Тёмный

Virtual Functions in C++ 

The Cherno
Подписаться 650 тыс.
Просмотров 500 тыс.
50% 1

Twitter ► / thecherno
Instagram ► / thecherno
Patreon ► / thecherno
Slack ► slack.thecherno.com
Series Playlist ► • C++
BEST laptop for programming! ► geni.us/pakTES
My FAVOURITE keyboard for programming! ► geni.us/zNhB
FAVOURITE monitors for programming! ► geni.us/Ig6KBq
MAIN Camera ► geni.us/t6xyDRO
MAIN Lens ► geni.us/xGoDWT
Second Camera ► geni.us/CYUQ
Microphone ► geni.us/wqO6g7K

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

 

10 авг 2017

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 501   
@greob
@greob 7 лет назад
There's no such thing as "minimal impact" in my opinion, there's impact or no impact. I'd rather avoid impact altogether. :P
@TheCherno
@TheCherno 7 лет назад
If you live your life without recognising levels of impact and absorbing some, you're not going to get anything done.
@greob
@greob 7 лет назад
I was just kidding, but the topic of optimization in programming is very interesting to me. ;)
@DarkLevis
@DarkLevis 6 лет назад
Some additional runtime costs are acceptable to make the COST of actually programming it smaller. And hay, people even use python to program which gives you a heavy runtime penalty compared to C/C++...
@kevycatminecraftmore7721
@kevycatminecraftmore7721 6 лет назад
Interesting.
@vighnesh153
@vighnesh153 5 лет назад
Let's say, I just touch your cheeks using a fingertip and then I slap you. Both are impacts. The first 1 will just hurt you mentally (some feeling of awkwardness) but the second 1 will hurt you both physically and mentally). You may ignore the 1st one and move on with your life, but you won't be able to forget about the second one for quite a while. I hope I have made my point.
@milenkopizdic9217
@milenkopizdic9217 3 года назад
For the newcomers, my suggestion would be to watch "stack vs heap memory in C++", "how to create/instantiate objects in c++" and "the new keyword in c++" before watching this.
@vikkio88
@vikkio88 3 года назад
thanks man, this is exactly what I was wondering
@furki6449
@furki6449 3 года назад
thx :)
@aniketnegi2642
@aniketnegi2642 2 года назад
thanks man!
@rustyelectron
@rustyelectron 2 года назад
Thanks a lot.
@Hoppitot
@Hoppitot 2 года назад
also inheritance in C++ really clears up the class Player : public Entity
@JuanPabloOrtizYax
@JuanPabloOrtizYax 5 лет назад
Brief explanation of uncovered topics (yet) in this video: Since strings is not a primitive type of C++ we need to import the header #include To use string without namespace std is like this: std::string MyString("hello") This is equivalent to: std::string MyString = "Hello" Pointer instances: new keyword returns a pointer std::string* MyString = new std::string("Hello") And if is a pointer you access their properties with -> instead of a dot (.) std::cout length()
@michamarzec9786
@michamarzec9786 4 года назад
Thanks for explaining. Now it all makes sense.
@archsheep7772
@archsheep7772 4 года назад
Thank you for your detailed explanation!
@carlosantoniogaleanorios4580
@carlosantoniogaleanorios4580 4 года назад
Thanks, this was really helpful. There is one more thing that was not explained before (as far as I can recall). In the constructor of the player class, he uses a constant string "name", which he passes by reference (first, I don't understand why this has to be a constant or a reference) and then he goes on to add the colon and m_name(name). I think I have seen in some other tutorial series that this is the way to load a value into a constant but I am not sure now.
@allenguan6755
@allenguan6755 4 года назад
thank u bro, love u every much
@nendo502
@nendo502 4 года назад
So what's "Player(const std::string& name) : m_Name(name) {}" exactly? Could u give me a keyword of this stuff to search? I have no idea what it is and how to search it for details.
@luisantonioreyes9375
@luisantonioreyes9375 4 года назад
My English captions: "my name is HMO and welcome back to my syphilis gloss series".
@Till27_Spence
@Till27_Spence 2 года назад
This is fax, i just tried it 🤣
@raoulbrigola5050
@raoulbrigola5050 5 лет назад
By far the best channel on youtube to learn anything about c++! Thanks a lot cherno!
@bassbatterer
@bassbatterer 5 лет назад
One of my lecturers actually went and dissembled the function calls for a Virtual function and for non-virtual functions for us to look at. The Normal function call executed 4 assembly instructions where as the Virtual function call executed 6, the additional 2 were dereferencing the pointer to the function pointer in the Vtable and then dereferencing the function pointer in the Class-specific function list. The overhead of 2 extra x86 instructions is next-to unnoticeable compared to the penalty of setting up a new stack-frame (which you have to do for both anyway) so the performance hit really in negligible.
@jonnywright8155
@jonnywright8155 4 года назад
Excellent comment. I'm having an error now which mentions the vtable and I think I know what's going on now thanks to this explanation . Thanks!
@rutanshu85
@rutanshu85 3 года назад
Thanks for sharing!
@CWunderA
@CWunderA 3 года назад
Doesn't it matter how big your vtable is though?
@ronensuperexplainer
@ronensuperexplainer 2 года назад
Dereferencing the function pointer can cost you 1000 instructions, because RAM has a high latency.
@petersansgaming8783
@petersansgaming8783 Год назад
@@ronensuperexplainer depends. Couldn't one develop a prefetcher for this problem to reduce memory latency?
@nilsmelchert776
@nilsmelchert776 6 лет назад
Beautiful set of tutorials. Probably the best I've seen so far for any programming language. I also like how it is divided into the different episodes that you can watch whenever you are only interested in a specific topic. Thank you for your time and please keep going like this!
@jonnyreh001
@jonnyreh001 2 года назад
You are the best Cherno. I am visiting your c++ series regularly. Basically when I run into a concept I need to get familiar with on the go :D
@FranciscoCrespoOM
@FranciscoCrespoOM 4 года назад
Most of the time I've seen a tutorial about virtual functions/vtables it works pretty well to make some diagrams on paper about how it works because it's such an abstract concept that in general people, especially newbies, find a hard time trying to understand what's happening under the hood.
@PirateDion
@PirateDion 3 года назад
Gotta say this video helped me understand virtual functions a lot more than anything else so far. Going to have to hunt down the other things that confuse me. I've been following a C++ tutorial app at work during breaks and such and these were stumbling blocks that undermined my whole understanding of polymorphism.
@RossYlitalo
@RossYlitalo 3 года назад
Very nice explanation. Short and right to the point. It's easy to agree with your assessment that v-tables have such minimal cost that the inconvenience of not using them makes using them a no-brainer. Thank you very much!
@undeadguy2
@undeadguy2 2 года назад
Figured id give you a thumbs up your 30 second explanation of what a virtual function does explained what my teacher could not do in 2 hours. Appreciate it sir.
@work9167
@work9167 2 года назад
This is short and beautiful, man! Please, continue doing what you do now
@MilindNikose
@MilindNikose 3 года назад
To better understand his code, go through these topics first: 1. String Class 2. Initialisation list 3. Arrow Operator 4. New keyword
@hamza.abdullah807
@hamza.abdullah807 5 лет назад
Guests: That's a very nice sofa, how comfy is it to sit on..? Cherno: No, it's just for the Aesthetics, I sit on the ground.
@jonathangerard745
@jonathangerard745 3 года назад
Virtual functions at first seemed harder than pointers for me... You've simplified it so elegantly... Thank you :)
@jackthehammer2245
@jackthehammer2245 6 лет назад
Thanks for your video. One thing I could add for virtual keyword is to add this keyword on destructor of the parent class to prevent memory leak when a derived class is deleted through the parent pointer.
@Mikerandria
@Mikerandria 3 года назад
Thank you! You explained VTable so easily. I can continue my Reverse Engineering tutorials in peace now. Keep up the good work!
@0xbitbybit
@0xbitbybit Год назад
Haha loving the "is he going to be in focus or not?" game I'm playing watching through these videos 😂 such an epic series though mate, thanks!
@higheredjohn8316
@higheredjohn8316 6 лет назад
Thanks for this - excellent refresher, and I learned a few new tidbits! Keep these coming.
@serkanozturk4217
@serkanozturk4217 Год назад
Personal notes: - Virtual functions help us to override functions in subclasses - Normally, without virtual functions, when you call a fucntion, that funtion is called according to the type the variable is declared, not according to the real type that variable points to(see video) - Virtual function helps you to call the proper fucntion, not according to the declared type, but according to the actual type it points to - Override keyword is used to specify that that function overrides another func in base class(u don’t have to use though)
@tsvetomirdenchev1440
@tsvetomirdenchev1440 6 лет назад
TheCherno, thank you for your great tutorials! Are you planning on making a tutorial on generic programming and C++ templates?
@rcookie5128
@rcookie5128 7 лет назад
Good stuff. Knew and used virtual functions already and funnilly enough I already learned this morning about the word "override" (also spoiler alert: final and volatile classes/member functions :O so much to learn!).
@ishouldhavetried
@ishouldhavetried 4 года назад
Let me tell you, I've been going to school for Software Engineering, and I have taken a bunch of different languages. Not a single one of them I really understood, just got it well enough to pass the class. But ever since I've found your CPP series, it's really helped, and I think I finally "get" it. This is the first language where I'm able to code without having to look up the solution 5 minutes into trying. Thank you for this series!
@jscorpio1987
@jscorpio1987 4 года назад
I don’t know if it’s this guys videos that influence my feelings but I feel like C++ is the most intuitive programming language I’ve ever used. I feel like the newer higher level languages abstract things away to the point where they actually miss their goal of being easier, and wind up being much more confusing because there is so much going on behind the scenes that you never really know what exactly your code is doing.
@sripradpotukuchi9415
@sripradpotukuchi9415 3 года назад
@@jscorpio1987 +1
@weiss588
@weiss588 2 года назад
@@jscorpio1987 hell no
@TheSexGod
@TheSexGod 4 года назад
If you're confused by this video and the next video... come back to it after watching more of his videos in the playlist. They are a bit out of order.
@WindPortal
@WindPortal 4 года назад
whew... that's a relief :D
@niranjanmadhu2609
@niranjanmadhu2609 3 года назад
Thanx man
@grimm5751
@grimm5751 3 года назад
ty
@Gr0nal
@Gr0nal 3 года назад
Can confirm, just revisited this and it makes so much more sense
@Grace-vg4hf
@Grace-vg4hf 6 лет назад
I'm working on an assignment and this is so helpful, thanks so much!
@yugantkadu8621
@yugantkadu8621 4 года назад
Please make a video on V Table and Memory allocation. I have been watching C++ playlist, your videos are very good to get concepts more clear.
@TheSunscratch
@TheSunscratch 7 лет назад
What is the difference between Player(const std::string& name):m_name(name) {} and Player(const std::string& name) { m_name = name; } Is it some kind of syntactic sugar?
@TheSunscratch
@TheSunscratch 7 лет назад
Lightslinger Deadeye many thanks for your explanation!
@TheCherno
@TheCherno 7 лет назад
There's no _real_ practical difference between the two, however there is a difference. Since m_Name is a class member which has the type std::string (which is stack-allocated), it will actually be instantiated twice in your second example (firstly with an empty string, and secondly copied from the name parameter), but only once in your first example (via the constructor's intiailiser). Definitely going to be a video on this in the future. :)
@TheSunscratch
@TheSunscratch 7 лет назад
TheChernoProject thanks :)
@BlackPhillip-sw8xf
@BlackPhillip-sw8xf 7 лет назад
+TheSunscratch Also you cannot use the first approach if the data member is static.
@matteocampo1732
@matteocampo1732 7 лет назад
Does the compiler (with -O2 or -O3 ) optimize it so that there is no difference eventually?
@PerchEagle
@PerchEagle 5 лет назад
Dude ! You are wonderful, you are smart not to explain unnecessary stuff. Explain the important things and other important related aspects ! wow ..
@uwu8750
@uwu8750 7 лет назад
Hey. Thank you so much! Had been waiting for this :)
@oleholgerson3416
@oleholgerson3416 6 лет назад
good videos, keep it up. so glad you dropped the backgroundmusic
@wayneray9489
@wayneray9489 2 года назад
This is really complicated for me a new learner.
@youssofprogrammer2389
@youssofprogrammer2389 2 года назад
Me too
@systematicloop3215
@systematicloop3215 7 лет назад
I don't know if I particularly like the fact that the override keyword comes after the function signature. I come from C#, so it's strange to look at.
@vertigo6982
@vertigo6982 5 лет назад
You must unlearn what you have learned.
@jairoacosta8940
@jairoacosta8940 5 лет назад
thank you, i always come back to reference your videos.
@willd4686
@willd4686 4 года назад
Your videos are amazing tools for learning this stuff.
@LunaFlahy
@LunaFlahy Год назад
1. Virtual function: declared in the base class, which enables the derived object to use its override function. 2. Override: declared after the function in the derived class. not required, but avoid misspelling the function name or overriding the non-virtual function in the base class. 3.V Table : stores the virtual function in the base class to dispatch, which cost space, int * pointer to the override function. 4. in specific embedded systems, using v table might impact the performance .
@immalkah
@immalkah Год назад
Rewording content in summary form is actually a great way to learn and reinforce knowledge 👍🏽
@TheSim00n
@TheSim00n 7 лет назад
Awesome video as always Yan. I know for the general use of virtual functions this video is absolutely enough, but I would love to see an explanation of how early and late binding comes into play with these functions and the concept of a vtable. Thanks!
@TheCherno
@TheCherno 7 лет назад
Yes, that will be covered in the vtable video. Late binding doesn't _really_ exist in C++ since everything must be known at compile time, and the vtable essentially just allows dispatching to a number of preset values (that are contained in the table), not to _anything_ which would be the case with late binding.
@TheSim00n
@TheSim00n 7 лет назад
Right on. Thanks.
@michaelkane1072
@michaelkane1072 2 года назад
It is the luckiest moment in this year that i found these series right after i started learning cpp
@mytech6779
@mytech6779 2 года назад
In Bjarne's book he states the cost of a vtbl as two memory accesses plus the function call, exactly. The vtbl is just a collection of pointers to pointers. Two accesses is proportionally huge for some special cases and totally insignificant for others.
@notremonde1652
@notremonde1652 4 года назад
You a life saver. keep up the good work!
@thomashaug5086
@thomashaug5086 4 года назад
Dude you are great at explaining these things. Probably won't ever see this comment but thank you. I don't write comments a lot but I am teaching myself c++ and I've watched several of your vids and they are awesome and extremely helpful. Thanks again!
@fireball111121
@fireball111121 3 года назад
Thank God for these videos. My professor is super chill, but he's so bad at explaining things. He reads the book at us and then explains things as though we already know it and moves way too fast and gets way too complicated.
@user-cs6fq8ov7w
@user-cs6fq8ov7w Год назад
tysm! every topic you explain is so clear and simple
@mockingbird3809
@mockingbird3809 4 года назад
Excellent explanation. Something I'm looking for. Thank you so much.
@laureven
@laureven 5 лет назад
If I was new to this I would have struggled to understand. Your explanation is very good but it is impossible to pause the video to see all code to be able to imagine this scenario. It would be nice to have this simple code all on the screen and then You explaining it. In Your video, You jumping between screens and this create a lot of confusion for all newbies I imagine. Maybe a smaller font :) ..the point is If I explaining this to anybody I Print the example code on a single page and then explain, If I jump pages from declarations to the main function this is very confusing ...but this is just me ...Anyway I like Your videos Regardless :) Regards
@zaid4708
@zaid4708 5 лет назад
ikr its confusing where he keeps on jumping everywhere i cant keep up
@froycardenas
@froycardenas 4 года назад
Certainly, this is not a topic for a newbie... virtual function is a complex feature of class heritance that I don't think there is an easy way to explain to people who have never coded anything in their life. This guy is obviously an expert and knows what he is talking about because he must have been programming for years.
@ashwinregi9215
@ashwinregi9215 3 года назад
That's true! I kept on pausing the screen to get it
@w3w3w3
@w3w3w3 4 года назад
So many new concepts in this video, I wish you would just explain them quickly lol. All the other videos have been perfect. Thanks though.
@greg6094
@greg6094 7 лет назад
Cherno, you are an absolute legend!
@Fidelity_Investments
@Fidelity_Investments 2 года назад
you kinda ran away at the beginning there. You've not gone over the Player(const std::string& name) : m)Name(name) {} syntax, nor the e->GetName() syntax. You kinda just left a lot of people in the dust there my guy.
@pascalladal8125
@pascalladal8125 2 года назад
Hey Cherno! Got to say great channel to learn c++, awesome channel to get used to the australian accent!! :)
@Joshua-gu5nj
@Joshua-gu5nj 6 лет назад
Your hair reminds me of that scene in There's Something About Mary. You know which one.
@greatbullet7372
@greatbullet7372 7 лет назад
Love u dude
@per-axelskogsberg3861
@per-axelskogsberg3861 2 года назад
This was perfect! Thank you 💕
@JohannesBergerSiroky
@JohannesBergerSiroky 3 месяца назад
In 2:10 an entity pointer is pointing to a memory area assigned to a player object. It will get converted this way: Entity *e = (class Entity*)p; Great video!
@jasonsui9029
@jasonsui9029 3 года назад
what a wonderful tutorial! Love it!
@song5030
@song5030 7 лет назад
Hey Cherno! Are these tutorials going to be by the C++ 14 and up standart? I mean like will these tutorials be of modern C++?
@somedude4122
@somedude4122 6 лет назад
Yup. Many of these will work on pre C++11, but most are C++24, especially the later videos, which are strictly C++14 and up
@Fallkhar
@Fallkhar Месяц назад
Excellent, just what I needed.
@ProtonPhoenix
@ProtonPhoenix 3 года назад
-> in c++ ~~~ An operator in C/C++ allows to access elements in Structures and Unions. It is with a pointer variable pointing to a structure or union. The operator is formed by using a minus sign, followed by the geater than symbol as shown below but bro we didn't reach union yet
@phantomstriker7996
@phantomstriker7996 Год назад
Virtual functions are basically backups for functions. So it tells the complier that if a function is overwritten then it knows that it originally meant.
@sameeranjoshi3819
@sameeranjoshi3819 3 года назад
@The Cherno when you say some people don't prefer virtual functions, what's the other option in that case? Is it CRTP ? Do you have a video on what to use if no virtual function?
@Dagrond
@Dagrond 2 года назад
I was wondering why you used the x->object style instead of x.object but it turns out that x.object won't use a vTable. Baby steps for me I guess.
@rahulpillai1271
@rahulpillai1271 10 месяцев назад
6 years later and I am still waiting for your VTable Video Cherno. 😆 I love your series. Please link me to the vtable video if there is one.
@Bhargav2307
@Bhargav2307 4 года назад
Hey Cherno, could you please make a video on the virtual table and stuff.
@mohamedabdul633
@mohamedabdul633 4 года назад
After surfing the internet for more than 10 minutes, and this tutorial was much more helpful.
@immalkah
@immalkah Год назад
Not sure if this will get seen this many years later, but I have a quick question. Does this mean that we should always define all of the functions in the base class as “virtual” as a rule of thumb? Thank you for the videos yan love your content
@nunofigueira8691
@nunofigueira8691 Год назад
Its was a very good and technical explanation, thank you.
@Metachief_X
@Metachief_X 4 года назад
Super easy explanation. Many thanks mate
@Chillzn-yt
@Chillzn-yt 3 года назад
Employer in the interview: "Where did you study?" Me: "The Cherno University..." Employer in the interview: "Where is that located?" Me: "RU-vid..."
@choosyguytest719
@choosyguytest719 5 лет назад
I dont get it... hard to understand at this point.
@loveboat
@loveboat 4 года назад
These videos started out so exceptionally great but it seems he has grown weary of this subject now, rushing through them and using unexplained code all the time.
@vertigo6982
@vertigo6982 4 года назад
Go review the video on Inheritance.. That should help you understand it better.
@woofelator
@woofelator 4 года назад
@@loveboat wat
@deleater
@deleater 4 года назад
There is Zero problem with this video. If you don't get it then you haven't actually practiced inheritance enough to learn why we needed the virtual functions in the first place. Just watching videos will never get you anywhere in programming. You will have to actually write the code, test it with all possible conditions you can think of, try to do illegal stuff and then understand why it is not working, is the only way you can truly learn any topic.
@jerfersonmatos28
@jerfersonmatos28 4 года назад
@@deleater I think he is not refering to virtual functions. Cherno introduced many other subjects in this video without explaining them, but all these are explained in future videos, so the only thing to take out of this video is the type "Virtual" subject
@AngelTaylorgang809
@AngelTaylorgang809 4 года назад
awesome video man
@vaiterius
@vaiterius 2 года назад
thanks Cherno
@unmeinks5907
@unmeinks5907 2 года назад
this is virtually the best tutorial on youtube (:
@exoticcoder5365
@exoticcoder5365 3 года назад
Super helpful gosh
@Hope-kf1nl
@Hope-kf1nl 5 лет назад
A+ video. Very helpful.
@aritzolea6554
@aritzolea6554 7 лет назад
A very basic question (coming from java). Why do you write Entity* e = new Entity()? Why do you add that pointer * ?
@TheCherno
@TheCherno 7 лет назад
Because the *new* keyword dynamically allocates memory and returns a pointer to the address of that allocated memory, hence why we need a pointer type. Check out my video on pointers if you haven't already, and I will definitely be making a video on memory allocation in the future.
@edino1981
@edino1981 7 лет назад
I will just add that in Java classes are by default reference types, while in C++ everything is value type, so if you need to refere to the same value, then you need to use pointers. So you can use same class definition as reference or value type. For example if you have new class Vector (position) , and you pass it to function as Vector (by value) or as Vector * ( as pointer only). If you embed Vector in Entity you can embed entire Vector or only a pointer to Vector.
@lesptitsoiseaux
@lesptitsoiseaux 4 года назад
I can't say how useful your series has been. My son is twelve and is into robotics and programming and switching from python to C++. He loves your series and I'm playing catchup to help him though I'm the one lagging behind. Thank you, and let me know, if you read this, if you ever considered doing something about OpenCV or anything machine learning? :-D
@asif_imtiaz
@asif_imtiaz 5 лет назад
Why does it work when I place virtual in the base class member function, but when I place it in the derived class member function, nothing changes? could you expalin a bit more? Thank you!
@mateusz-czajkowski
@mateusz-czajkowski 3 года назад
2:39 that resignation in his voice lmao
@sgyffysgyffy4736
@sgyffysgyffy4736 6 лет назад
Great video!
@brod515
@brod515 6 лет назад
I understand the PrintName() function example but with the first example in what situation would you have to cat Player as Entity?
@WindPortal
@WindPortal 4 года назад
Okay Cherno... we get it... we are dumb. You happy now? Guess I'll just have to watch more of your videos to understand these unexplained concepts, which I was going to anyways because you're the best teacher ever. :D
@krec348
@krec348 7 лет назад
Thanks a lot for the video! :))
@lali3049
@lali3049 2 года назад
Great explanation
@AbdulMoiz-ho8rx
@AbdulMoiz-ho8rx 2 года назад
Excellent
@sujayshetty1618
@sujayshetty1618 5 лет назад
Could you please make a video of implementation of of Vtable.
@dafid
@dafid 4 года назад
Congrats, fellow hacker, i recognise you as one of them 'Non-pasters', have a nice journey hooking them VMT-s!
@rivershi8273
@rivershi8273 Год назад
I have learned a lot from your videos. Can you create a tutorial on setting up C++ in Visual Studio Code? Visual Studio is still too heavy for me.
@impe001
@impe001 4 года назад
u save me dude thank you so much !!!!!!!
@volts-kr4bu
@volts-kr4bu 6 лет назад
Hey Cherno... I am a beginner and I can't understand your complicated code... It is very difficult as u put lot of new stuffs in your code and u reach directly to the complicated level( acc. to me). What should I do?????
@piechulla1966
@piechulla1966 4 года назад
There is no Nuremberg Funnel. Use textbooks. Play around with code. These videos just can give you deeper insights.
@ManishSharma-fi2vr
@ManishSharma-fi2vr Год назад
Thank You!!
@synestematic
@synestematic Год назад
do constructors in base classes also need to be marked as virtual if they will be overridden by subclasses?
@oraclematon9277
@oraclematon9277 2 года назад
this is the best
@anupkodlekere3633
@anupkodlekere3633 6 лет назад
Whats the implications of using const for strings? like when you used ( const std::string& name )?
@othmaneparadis1576
@othmaneparadis1576 4 года назад
guys this is the hardest in c++ so dont quit
@dwivedys
@dwivedys 2 месяца назад
Thanks for that timely and apt reminder! You got this all of you!!
@manuelruiz9278
@manuelruiz9278 6 месяцев назад
Nice video, thanks bro
@NGh_teh
@NGh_teh 2 года назад
Hey Cherno. Thanks for the videos first. Can you explain the syntax you used in the player constructor? what is this specifically: m_name(name){ }. I know it sets the name to variable m_name but I have never seen this syntax before. Why you didn't do it in the body and the body is just empty? Can anyone explain to me? Second question. Sometimes in the formal parameters, you expect a pointer but in the actual parameters, you pass a normal data type like a string literal. Also in the body function where you are expecting a pointer, you just use that variable without dereferencing. I am confused by this. Can you help me with that?
@enes5345
@enes5345 Год назад
hey I hope you found answers your questions but this maybe helpful for someone else , for the first question: In c++ there is a way to initailize a variable with { } without using = operator , so for example int x{0} , y {10} (you basically did x=0, y=10;) and also you can use this way of initalization for constructors in this case , Player(const std::string& name) :m_Name{name}{ } basically initalize m_Name to the value of name it is actually the same thing with Player(const std::string& name) { m_Name = name; }, depends on your style of coding for the second quesiton I think you mean this parameter in the Player constructor , (const std::string& name ) so here & says it is a referance to the variable not pointer , it is widely used for parameters to strings in order not to create a temporary string value and copying its value to it like void getName( string name) {m_Name = name; } because here you basically created a name variable and you passed a value to it like "Cherno" and you copy it to the m_Name, this means an extra garbage spaces right but if you use & then there wont be any name value created, so directly "Cherno" or , whatever you pass , it will be directly assigned to m_Name, I hope its clear and you can watch reference video or see more examples on it :)
@maolin7866
@maolin7866 Год назад
@@enes5345 thank you!
@enes5345
@enes5345 Год назад
@@maolin7866 you're welcome and also I am sorry I have learnt recently something new that I didn't know that in c++ initializing variables using initializer list( intiliazing variables after : ) is different than to initialize variables in the constructers body , when you initialize variables using initializer list what c++ do is it directly creates and initializes variables in the memory with the values that you have passed but doing this in the body of the constructers, c++ creates those variables in the memory and than assign them those values, this doesn't make much difference with intgrrs doubles or so but if you pass any object to the constructers like in copy constructers than using initializer list makes difference its faster as far as I know ( If you guys know sth diff pls tell us ) ,and one more thing initilazing vatiables using ( ) , and {} also different even in normal initialization like int a{}; different than int a(); again this might not make alot differencr for the int like variables it makes for objects creation , do in this way Point(string& name) : m_Name {name} { //Body } Thanks for your comment so that I could find a way to correct myself 😅🤗
@vickyzz4436
@vickyzz4436 Год назад
@@enes5345 Thank you for your explanation!
@Vijayenthirans
@Vijayenthirans 6 лет назад
Say Entity is of size 8 bytes and Player is of size 12 bytes while declaring Entity* e = p; does compiler do an implicit conversion and say that e is pointing to an object of type 12 bytes instead of 8 bytes?
@danielketcheson1965
@danielketcheson1965 2 года назад
This series Applies in 2022 Meets the standards for my school's conventions (industry standards) Is more articulate and understandable than the "C++ For Dummies" series Has a loving/lovable character directing it I (with next to no rep or qualifications) award the Cherno with best C++'s best resource award I said it here Now I'm going to say it everywhere else.
@abdelrhmanahmed1378
@abdelrhmanahmed1378 3 года назад
First of all great video as always:), but one question how we have a pointer of the base class point to an object of the drieved class , although the drieved class may have additional methods that's is not in the base so how the base pointer handle this , and if there's a good reference of this topic in depth I will appreciate it
@Casanova646
@Casanova646 4 года назад
Just curious, in another video of yours you state that most of the time you would want to use the stack. Why do you use the new keyword instead of doing something like "Entity e;" ?
@morball6668
@morball6668 2 года назад
amazing
Далее
Interfaces in C++ (Pure Virtual Functions)
6:55
Просмотров 344 тыс.
WHY did this C++ code FAIL?
38:10
Просмотров 236 тыс.
CONST in C++
12:54
Просмотров 398 тыс.
Function Pointers in C++
12:41
Просмотров 384 тыс.
The Flaws of Inheritance
10:01
Просмотров 918 тыс.
I Rewrote This Entire Main File // Code Review
16:08
Просмотров 148 тыс.
how Google writes gorgeous C++
7:40
Просмотров 833 тыс.