Тёмный

C++ Programming Tutorial 67 - Pass By Reference and Pass By Value 

Caleb Curry
Подписаться 635 тыс.
Просмотров 97 тыс.
50% 1

Start your software dev career - calcur.tech/de... 💯 FREE Courses (100+ hours) - calcur.tech/al...
🐍 Python Course - calcur.tech/py...
✅ Data Structures & Algorithms - calcur.tech/ds...
~~~~~~~~~~~~~~~ CONNECT ~~~~~~~~~~~~~~~
✉️ Newsletter - calcur.tech/ne...
📸 Instagram - / calebcurry
🐦 Twitter - / calebcurry
🔗 LinkedIn - / calebcurry
▶️ Subscribe - calcur.tech/sub...
👨🏻‍🎓 Courses - www.codebreakt...
~~~~~~~~~~~~~~ SUPPORT ME ~~~~~~~~~~~~~~
↪ My Amazon Store - www.amazon.com...
🅿 Patreon - calcur.tech/pat...
🅖 GitHub Sponsors - github.com/spo...
Ⓟ Paypal - paypal.me/calcur
🅑 Bitcoin - 3HnF1SWTzo1dCU7RwFLhgk7SYiVfV37Pbq
🅔 Eth - 0x350139af84b60d075a3a0379716040b63f6D3853
📈 Buy Bitcoin - calcur.tech/cr...
Reserve the Ruby Steel crypto rewards card and get a $25 bonus (use affiliate code "Caleb") - calcur.tech/cr...

Опубликовано:

 

11 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 76   
@javathehut3593
@javathehut3593 3 года назад
The concept is simple but when you actually have to do it its difficult
@Awesimile
@Awesimile 3 года назад
As a computer science student, I really appreciate all of your videos. They make all these complicated topics so much clearer. :)
@vortex_7574
@vortex_7574 4 года назад
On behalf of all programming students; cout
@khaledAli03
@khaledAli03 4 года назад
std::cout
@jacoblehrer4198
@jacoblehrer4198 4 года назад
@@khaledAli03 they could've specified "using namespace std;" otherwise you needed to let them know they're missing a whole lot of other stuff lol
@jesusgarciagutierrez7301
@jesusgarciagutierrez7301 4 года назад
@@khaledAli03 #include using namespace std; int main(){ cout
@minsungkim6792
@minsungkim6792 3 года назад
nerds
@rafaeu292
@rafaeu292 3 года назад
"THANK YOU!!! "
@Inglonias
@Inglonias 2 года назад
One thing I have learned is that it is good practice to pass things by reference unless you have a good reason not to, because if you pass by value, the computer also needs to copy the object whenever a function gets called. If the object used is especially large, or you're calling a function especially often, or both, passing by reference means your code will run much faster.
@fatteralbert3082
@fatteralbert3082 2 года назад
I was wondering this same thing while watching the video. I'm unsure if this is true, but as of now I don't have a reason to not agree with you. If anyone has some information we are both missing out on, please let us know
@67hutch
@67hutch 7 месяцев назад
That's very true. I think that the same logic can also be applied to range-based for loops, by making the type of the declaration (the thing that comes before the ':' in the brackets) either auto& or const auto& (for if you want to be able to modify the element in the loop, or if the elements will not be modified in the loop, respectively. I hope that makes sense.
@ipodtouch470
@ipodtouch470 7 месяцев назад
It depends what the function is doing but I prefer to use pass by value when possible. I don’t like the idea of being able to mutate a variable that isn’t defined in the scope of the function. Obviously though there are times when you can’t prevent this like when you mutate an object inside a cpp function
@ChrisSoCLD
@ChrisSoCLD 4 года назад
I needed this. I almost have a minor in CS and didn't clearly understand this concept until now. THANK YOU!
@rahileshanbi5551
@rahileshanbi5551 3 месяца назад
Thank you as an engineering student that has nothing to do with programming whatsoever but required to by my college. You've really helped me 😂
@axelman8547
@axelman8547 Год назад
Dude! Yes finally I understand why my value changes, but when the funtion is ended, the value is restored. The &value did the trick, man I lost 6 hours of trial and error and this dit it in 10 seconds. Thank you for your knowledge . Cheers
@abugslife2461
@abugslife2461 4 года назад
thank you so much!! i've been stuck on this concept for so long, but it's starting to make sense! thank you!!!
@Chad-cq6uy
@Chad-cq6uy 3 года назад
Actually thank you so much, I've been stuck on functions for a week and a half now using codecademy, and I knew I was stuck on one concept, but could never figure it out. After this video I have so much of a better understanding. I never even knew the difference of passing by a reference to passing by value. Honestly this one of the best video I've come across on the internet in terms of explanation for beginners.
@JIMMI_CANADA101
@JIMMI_CANADA101 4 года назад
He is a keeper of the peace, 'his name is...' We thank this man...
@universalalgorithm3263
@universalalgorithm3263 4 года назад
OMG ty I watched this before a final and aced that portion of it.
@shritishaw7510
@shritishaw7510 3 года назад
you're damn underrated, pal. Thanks for easing down this important feature of C++
@indraxios
@indraxios Год назад
i play your videos on 2x, you are not boring or slow, your explanations are so that even a dummer like me can understand it very easily even on high speed
@sdev8921
@sdev8921 2 года назад
Really appreciate your efforts and make concepts very SIMPLE. Very few tutors/teachers can have this abilities. You helping many lives who struggle with C++. God bless you @Caleb
@ReddoX30
@ReddoX30 4 года назад
Thank you for the explanation! I understood in 5 minutes the pass by concept!
@TrickArrow
@TrickArrow 3 года назад
There are so many helpful youtubers that help me understamd within 5 minutes. I know the feel. Our professor tells us "You need to learn how to do 'X' concept" everytime you ask her something.... Like isn't it her job to teach me 'X' concept?
@robertthompson5908
@robertthompson5908 2 года назад
I feel so validated that you acknowledged that there is a learning curve to writing an and sign. I’ve been working on my and sign lately too.
@ethanboba5262
@ethanboba5262 11 месяцев назад
not to brag or anything but I did it rn first try
@lynn4381
@lynn4381 4 года назад
Dude, I freaking love you. Thanks for your channel !!!
@user-br3mg5gt3g
@user-br3mg5gt3g Год назад
Dazzling explanation! Greetings from Bulgaria!
@brocklesnarufcchamp1
@brocklesnarufcchamp1 3 года назад
Once again, you nailed it with the explanation. Good job 👌
@benyaminshirani5824
@benyaminshirani5824 3 года назад
thank you so much that makes sense a lot
@eenayeah
@eenayeah 10 месяцев назад
This is definitely one of the more confusing things... Thank you for this explanation!
@GeoffryGifari
@GeoffryGifari Год назад
what if our functions' argument is an array and the function modifies said array? can we do it if the type information is lost while passing the array as pointer?
@normanfrankiv5512
@normanfrankiv5512 4 года назад
You're awesome and appreciated! Thanks for the content!
@Rex-ml5op
@Rex-ml5op 3 года назад
Really like your explanation, very easy to understand. Job well done
@mayakali8356
@mayakali8356 2 года назад
you are a master of codifying these concepts into a easy to digest format, Codified by Caleb haha keep it up!!
@raushanraj9597
@raushanraj9597 2 года назад
Thanks a lot, Sir. From India
@TrickArrow
@TrickArrow 3 года назад
Thanks a bunch for this!!!
@edin1256
@edin1256 3 года назад
Thank you very much, this was so helpful
@B1gLupu
@B1gLupu 2 года назад
Should also mention that if you use a prototype, it also needs to have the & sign.
@n-o-i-d
@n-o-i-d 3 года назад
excellent explanation
@Killtacboy
@Killtacboy 2 года назад
Really loved your explanation. Thank you!
@litergod
@litergod Год назад
Great explanation.
@merouane6319
@merouane6319 Год назад
great explanation Thanks
@togurosensei7470
@togurosensei7470 5 лет назад
can you do video on pointer variables and how pointer calculation works like integer ones outside int main. Mixing with array would be nice. I also want video of the pointer of single link to double link head to tail
@swaraj6053
@swaraj6053 Год назад
Brilliant!
@kettleghost3721
@kettleghost3721 4 года назад
Thank you!
@aousdalloul9402
@aousdalloul9402 2 года назад
Thanks so much.
@stealthy3244
@stealthy3244 3 года назад
wow i needed this thank you
@tomryder4093
@tomryder4093 4 года назад
OMG, I love you! Thank you very much, Curry!
@Mytwistedvoices
@Mytwistedvoices 3 года назад
I couldn't get the Embarcadero to work. It wouldn't accept any serial number I was given. Thank you for the information
@Jeo_art
@Jeo_art 3 года назад
Thank you sm!!!!
@PunmasterSTP
@PunmasterSTP 3 года назад
You know what else has skyrocketed since you started making this tutorial? The number of people who learned about a product that can help them deploy high-performance native apps on windows, android, iOS, macOS, and linux. Unfortunately I can't quite recall the name of it at the moment. Hopefully I'll hear it again soon, maybe even in the next video...
@pengdu7751
@pengdu7751 2 года назад
in this case of using reference as parameter, why not just pass "int *" type instead? does the same thing.
@tejaszodge4211
@tejaszodge4211 2 года назад
Amazing!!
@Haykke
@Haykke 3 года назад
wow, only 20K people actually wnat to improve software performance
@ahmedegymed5853
@ahmedegymed5853 3 года назад
27k
@maxthegr8legend319
@maxthegr8legend319 4 года назад
I started to write a similar code as of the 4:58 time stamp. And canonically, I started with x = 5 and I was surprised to see you do the same... 5:20 That's awesome!!! congrats, sir... BTW, Thank you very much for all your help so far...
@gigachad6844
@gigachad6844 4 года назад
Crisp clear
@engineeringjoe
@engineeringjoe 5 лет назад
very freat explaination
@BazzoMusic
@BazzoMusic 2 года назад
Your curly brackets bro 💀
@GOODBOY-vt1cf
@GOODBOY-vt1cf 2 года назад
5:00
@MasayaShida
@MasayaShida 3 года назад
i love you
@pawebakiewicz6786
@pawebakiewicz6786 4 года назад
Function header shouldn't be void do_stuff(int *x)? I admire your & drawing skills but mistake like that is unaccaptable for me in a tutorial video.
@guitarhax7412
@guitarhax7412 5 лет назад
Another one.
@liampapavasiliou9658
@liampapavasiliou9658 3 года назад
NO
@liampapavasiliou9658
@liampapavasiliou9658 3 года назад
STOP
@sirskylight7901
@sirskylight7901 4 года назад
My “and”s look like a 4 on its side.
@bernie4366
@bernie4366 3 года назад
I wish every tutorial about reference values wouldn't rely on arrays to explain it. Reference values come before arrays in my introductory CS class. One thing I don't really understand is enough, don't need two.
@lator1941
@lator1941 3 года назад
I don't understand fml
@morzariadeep
@morzariadeep 4 года назад
the only reason i am not subscribing to your channel is the ad duration is way too annoying !
Далее
Pass By Reference | C++ Tutorial
10:21
Просмотров 9 тыс.
C++ Pass by Value, Reference, Pointer Explained
10:18
C++ Programming Tutorial 76 - Intro To Namespaces
5:04
the TRUTH about C++ (is it worth your time?)
3:17
Просмотров 695 тыс.
Call By Value & Call By Reference in C
8:34
Просмотров 1,3 млн
References in C++ Explained
15:03
Просмотров 100 тыс.
C++ user defined functions (#15) 📬
17:14
Просмотров 33 тыс.