3:43 'variables that are made from class types are called objects' this line just made everything so much easy. Thank you.
@nikhilgarg27 Жыл бұрын
Agreed with you 100%
@electronix2596 жыл бұрын
Each of these 10 minute videos teach me more than one class
@themanwhich1234565 жыл бұрын
fuck yeah.
@CupOfWhiskey4 жыл бұрын
No joke, I learned more in two videos 16min total than I did in my 2hr class
@timeflies983 жыл бұрын
glad I'm not the only one
@michaelnolan87193 жыл бұрын
Professor Xing ain't got nothing on Cherno, Easy A for data structs. ;)
@pierfrancescopeperoni3 жыл бұрын
True, you can play videos faster on KZbin.
@zzzMrgamerzzz5 жыл бұрын
Never in my Uni days have I seen such a good youtube tutor. Clear, succinct and everything seems so much simpler
@oquaika-qua30434 жыл бұрын
Coming from a C background and just learning C++, I have had so many people try to explain the concept of classes, but until watching your video I have never fully understood it. Thank you so much.
@rzmadzore2 жыл бұрын
same here, what a relief
@faizalimuhammadzoda47317 жыл бұрын
I like the way you explain things: very simple, very fast and most importantly-nothing outside the topic. Thanks.
@serkanozturk42172 жыл бұрын
Personal notes: -Members are private by default -Classes allow us to group variables into a user-defined type and also add functionality to those variables
@goodvibes730411 ай бұрын
And those functions are called methods inside the classes.
@mukundchandrahasan58906 жыл бұрын
Just came by to learn more from my University C++ class, and I got to say I love how your video is succinct and concise. No extra flowery wording, just straight to the point. But you do so in a way where we can understand, so you have that perfect sweet spot in teaching. Appreciate it, and I'm glad I came across your channel.
@zes38133 жыл бұрын
wrgg, no such thin gas extra or succx or concisx or point or etc, say, can say infix any nmw and any s perfect
@biqbicle4982 Жыл бұрын
@@zes3813 ??
@ToxicityGameDev7 жыл бұрын
Soooooo.... Udemy ads keep playing on these videos telling me to sign up for a C++ course on there... Pfff, wrong place to advertise guys lmao.
@Gilpow6 жыл бұрын
Sure, because clearly you're going to learn a lot by using a single source, right?
@timmoth_j6 жыл бұрын
Using an adblocker will stop the Cherno from earning money from these videos, regardless of how smug and annoying the Udemy guy is I still choose to watch the adverts to support the Cherno.
@Gilpow6 жыл бұрын
Timothy Jones Yup, it's the least we can do, if we can't support him on Patreon.
@batabatonica6 жыл бұрын
They are spamming me python and html, but i watch them anyway to help Cherno
@ToxicityGameDev6 жыл бұрын
@Gilpow, really dude... you take all of life so serious? @Dany na, I prefer to help him get those pennies that stack up from the ad views ;-)
@mtareen4 жыл бұрын
I wish learning C++ was this easy. Having worked in C++ for 8 years in the past, it takes a long time to understand these concepts
@nortski784 жыл бұрын
I'm so glad you decided to ease up on the music, it makes it so much easier to concentrate on what you're saying.
@leixun4 жыл бұрын
*My takeaways:* Class is a way to group data and functionalities together 0:55
@rasta63324 жыл бұрын
looking for your comment and found it... I hope you have a summary of all the upcoming videos in the playlist.
@leixun4 жыл бұрын
Rasta Thanks, I did write summary for most videos in the playlist, but some of them are more complete than others :)
@Aditya-zl8sn3 жыл бұрын
commenting for visibilty
@colorlord987 жыл бұрын
Still waiting for that video on the back of a kangaroo!
@danielrousseau65416 жыл бұрын
This kind of format is definitely better for both teaching and learning.
@vidyutphagetra38043 жыл бұрын
you have a gift of explaining things precisely and without all the bullshit
@bencilbusher50703 жыл бұрын
it wasn't until I watched this video did I finally understand exactly why OOP is easier. thanks to juxtaposing the function straight to the class function.
@accessdenied93933 жыл бұрын
Or more simply, we can declare the move function inside the class and define it outside the class. class Player { public: int x, y; float speed; void Move(int xa, int ya); }; void Player::Move(int xa, int ya) { x += xa * speed; y += ya * speed; } int main(void) { Player player; player.x = 1, player.y = 2; player.speed = 3.4; player.Move(1, 2); }
@autumnleaf84833 жыл бұрын
This is like Roblox Studio Development where everything has a classname, with its own functions! Thanks for the tutorials! I am loving it!
@humbledcomposer8 ай бұрын
A side note. If you were to print x or y in the state of the code at 8:03, you would get a completely unknown value. This is because, as he talked about in previous videos, when the variable is created it get assigned a memory address. We have no idea what previous data was in that memory address, it could be anything. Thus, if you print it without initializing it, most often, it will be a seemingly random integer value left over from the last variable (even from another program) that used it. As a result, ALWAYS initialize your variables people. ALWAYS.
@rachidajewher86493 жыл бұрын
i like the way you are teaching people you are explaining everything in a higher speed you get the global vision of the subject instantly
@akberalikhan46594 жыл бұрын
Explained it quickly and clearly. Saved me a lot of time. Thanks!
@jmac217x2 жыл бұрын
In 3 min you've explained classes better than anyone and with examples of references too kudos
@benixmo4 жыл бұрын
I've been using python and golang but honestly I am going to use C++ from now on. Literally every video you have with a "new" concept just leave me thinking "Wow that's really cool", C++ seems like the perfect language.
@tomjesten39453 жыл бұрын
Depends on what you want to do with C++.
@kylekastilahn3 жыл бұрын
If you're learning to code any of these are fine to learn in C++/C#/Python/Java/Javascript in my opinion. I would recommend playing around with a few of them just to get a feel for what you like. I wouldn't worry so much about "learning" the language, as much as learn to code, to start off because a lot of the basics/concepts are very similar. As one progresses it really depends on what is your path / end goal (use the right tool for the job). Each language is a tool, there are pluses and minuses to each. Personally would recommend Python/C#/Javascript to beginners because I think they are the most straight forward and have many branches and uses one can do particularly if you're not sure of your path.
@Hydro17385 жыл бұрын
Dude, your explanations are really impressive ... I like your KISS approach ...
@Ferocious_Imbecile2 жыл бұрын
It's always a relief to find somone that makes an impermiable thicket of jargon become meaningful.
@r0_5 жыл бұрын
This is the best explanation i've seen. every video/tutorial didn't help me. i tried for a few months but this is the only one i consider good
@gurjindersingh38434 жыл бұрын
C++ is called C++ because in C "++" was used to increase the value of variable by 1. So if C=1. C++ = 2. Which is to say, C++ is an incremented improved version of C.
@gurjindersingh38434 жыл бұрын
@Artem Katerynych I forgot ++C was a thing
@cheako911555 жыл бұрын
C also has objects these are singular, structures, and arrays. Any of them could hold a pointer to a function and when u call a function through such a pointer that's exactly when things transition into OOP.
@emilycs88233 жыл бұрын
These videos make these concepts so simple. I learn more from them than my professors lectures , and college c++ textook.
@minecetinkaya576311 ай бұрын
Perfect!!!!! How could you explain so simple. I read and watched videos but this is the most understandable way of this topic. Thank you so much.
@dildarsk2467 жыл бұрын
Cherno becomes teacher. 100% boys' attendance. *200%* girls' attendance. *H a n d s o m e*
@amndrkwe4 жыл бұрын
Michael O'Connell if you count us it would be probably 500%
@essmunson4 жыл бұрын
@@amndrkwe agreed
@RoySATX3 жыл бұрын
More like 110% boys attendance, I know I'd be auditing this course
@iamtrash2883 жыл бұрын
Shadow clone no jitsu
@suntzu14093 жыл бұрын
Gaes: ( ͡° ͜ʖ ͡°)
@MrHaggyy Жыл бұрын
There is one thing that classes do automatically for you that's quite hard and not fully achievable by C. And that's typesafety at compile time. You can typedef structs in C, but you can walk around the typecheck by accident or on purpose. C++ on the otherhand will always give you an compile error if you work with object's of different types, unless you provide a function or overwrite an operator that gives meaning to that combination of types.
@christophersheppard32493 жыл бұрын
Wow, in 8 minutes you managed to teach me better than my actual cs teacher.
@jaidev27174 жыл бұрын
Can't appreciate this series enough..excellent job...Best things is your videos aren't boring like other programming videos. Keep it up man. May god bless you.
@sacredgeometry4 жыл бұрын
C# is most certainly not just OO anymore its definitely well seated as a multi-paradigm language and has been for many years. With things like ReactiveX you have data-flow, with LINQ you have functional, both are those are heavily declarative but c# is obviously also heavily imperative, reactive is data driven but async/await sand the TPL is task driven, it has very mature reflection it can easily be written procedurally. It is basically the programming language equivalent of what English is to spoken language. It takes good ideas, finds really robust implementations and then improves on them.
@chastitywhiterose5 жыл бұрын
I've done many hobby programming projects over the years and yet I've stuck with C and never used object oriented features. However I have seen this and other examples of how it can allow doing the same things I'm doing in a lot less code. I'm doing graphics programming and so an image class makes sense as each image will have its own pixel array and width and height.
@ezert_135 жыл бұрын
I'm sure I'll recommend this course for a lot of people in the future! : D
@FlooferLand3 жыл бұрын
1:42 "You can probably start to *C* that this is getting a little bit messy" and that relates to how C doesn't have classes lmao
@Rose_Harmonic3 жыл бұрын
my brain is exploding with understanding and I am very excited.
@mohit77174 жыл бұрын
thank u so much for providing this c++ series .
@rcookie51287 жыл бұрын
Structs could have been mentioned as well in this video I guess, but not necessarily. Great job, as always! now to the other columns of OO programming! :)
@thoraero2 жыл бұрын
I really hope 14 year-old me some 20 years ago watched this. I struggled so much back then with so little access to materials.
@Get_Boros Жыл бұрын
Nice example of POD (Plain Old Data) type.
@SyedAbdulBasit-n6p10 ай бұрын
this video really helped me understand Classes in C++ thanks cherno♥
@chalkchalkson56397 жыл бұрын
"there is nothing you can do with classes you couldn't do without them" Yeah, C is turing complete and doesn't have classes, but so is assembly or colouring squares on a piece of paper... Just because you could technically do all the same things doesn't mean that anyone on earth is actually capable of doing so :P
@FalconGames1097 жыл бұрын
C still has things like structs, function pointers, etc. that can accomplish any OOP stuff in about the same amount of code. As opposed to, e.g. templates, which have no real correspondence with any C features.
@zfolwick4 жыл бұрын
You can actually define classes in C. But why would you want to? It important to know in legacy codebases
@suntzu14093 жыл бұрын
( ͡° ͜ʖ ͡°)
@jonathanlevin76603 жыл бұрын
About C# being exclusively Object-Oriented - While it's true that C# was originally made to be an cleaner, object oriented alternative to Java, It's actually moving more and more to the functional paradigm in recent years, including borrowing many features from F#. Also I'm not a Java dev but pretty sure it also has Lambdas as of Java 8, though afaik on the JVM there are other languages much preferred for functional programming (Scala, Kotlin etc)
@SkeletonSSBM3 жыл бұрын
Thank you so much! Simple and to the point, yet has great explanations for the things he's doing. Nice work!
@bayroncastillo76536 жыл бұрын
you are so good at explaining , thank you
@luobei50833 жыл бұрын
group the variable into a type and add functionality to those variables.
@rando521 Жыл бұрын
you are extremely coherent and i love it.
@skayland3 жыл бұрын
Wow that was super simple and well explained. i think I'm gonna watch the whole series now lol
@roja2 жыл бұрын
Commenting for your exposure. The best channel on KZbin for C++ !!!
@SabrinaOwens-i7s Жыл бұрын
Thank you for simplifying classes for me in c++
@nikudayo79272 жыл бұрын
"functions inside classes are called methods". OMG I've been using those words interchangeably this whole time! :o
@nemanjakatava47353 жыл бұрын
found your tutorials very useful, well done
@streetfighteryamahar1785 жыл бұрын
Very clear and understandable video with relevant examples. Thank you.
@PythonisLove3 жыл бұрын
youtube sucks, it didn't recommend your video, while I was actually learning c++, now it's again making things interesting!
@isaacyuki14 жыл бұрын
wow u actually simplified 24h of senseless lectures in 8 min.
@009MAMAX6 жыл бұрын
you missed explaining why speed is defined as 36918 int, where you're didn't define it inside your class, but thanks a lot for clearing this out!!
@undac95906 жыл бұрын
If you don't define a variable, it takes whatever value was in that block of memory. I believe that in some rare cases in debug, a certain predefined value is assigned automatically.
@mustafaglnr87805 жыл бұрын
Any thought you have, to build up an episode relative with Polymorphism ? if no, please ...
@GenericPhantom12 жыл бұрын
Classes are a way to group data and or functionality.
@reviIo4 жыл бұрын
tell me why this video explained things better to me than 3 hour long lectures of just abstract ranting
@mojosace6 жыл бұрын
Genius. Learned more in this than in one whole lecture with my awful professor
@dalyzee6 жыл бұрын
You just earned a sub.
@fsk6487 жыл бұрын
You kinda look like Luke Steele from Empire of the Sun, you even have the same nationality. Keep up these golden tutorials man.
@iamzepeqeno50862 жыл бұрын
me: oh so a class is to organize data ? cherno: no... *sight* not data, its DADA
@Jonas.verhaegen11 ай бұрын
How can we do what you just wrote without classes? I mean, that's probably quite easy as it is a simple example. How would you actually do that though? Would that be possible by creating a global container that stores the player identifier key like in a , and then maybe associate x, y, speed with that key? How would we actually do that though with a map? I only learned it so far that you can associate 2 datatypes with each other, so let's say a string for the identifier, and then int for the x location. Or maybe even a map that associates a string key with a double vector? This vector could then hold x, y and speed. This way we could create various players inside our map and set x,y,speed independantly for each player. And then create some fuctions to perform transform operations on the player's position where we just need to input the playeridentifier key and displacement variables and it will automatically alter the vector content that responds to the identifierkey? I'll try this experiment now. But though, I can imagine if you would need to perform more complex algorithms on a certain custom datatype, it would be almost impossible to do that without having classes. Not impossible I believe, but just over the top unnecessary complex.
@jandynotaloca4 жыл бұрын
thank you so much, every other video doesn't explain it thoroughly.
@mardiyonghasben1619 Жыл бұрын
thanķ you sir....and godbless you...give all human education about and learn programming c++...thank you
@SolarPlayer4 жыл бұрын
I had a negative reaction to this vid in the first couple of seconds because I'm a superficial moron but I was a fanboy by the end. What a great explanation and high quality vid, impressive
@NurGarciaTerrassa Жыл бұрын
Great lesson! Thank you!
@chiyungchu94634 жыл бұрын
use alt+ up arrow to move selected line up in case u dont know .(go to Edit > Advanced)
@SnackKingOfficial3 жыл бұрын
I learned so much from this video, the confusion and worry I had is gone.
@AlexTheGreatish6 жыл бұрын
That hair is on point in every video.
@zes38133 жыл бұрын
wrrr
@anandchourasia18482 жыл бұрын
Hey Cherno, you can't do this!!! You are making C++ too easy.
@azriel__4 ай бұрын
MAN I LOVE THE CHERNO
@nafimulyo9739 Жыл бұрын
such a great video. i am beginner and i still understand all of the stuffs that you teach to us! Well done! Thanks :D
@NoThing-ec9km4 жыл бұрын
there are actually things u cant practically do without classes that is changing variables already assinged without rewriting the whole code so its technically possible to rewrite whole code but given that u dont wanna do that so u cant do it without classes
@victorzedwings2 жыл бұрын
*Actually we need to pass Player instance in!* *But in C++ this chunk of the code gets inserted implicitly be the compiler.* For example in Python passing a handle of the instance, should be done explicitly in the code.
@omer204 Жыл бұрын
Only an expert can tell these concept as easy as possible as you
@mohit77174 жыл бұрын
Please provide a lecture on Data Structure and Algoerithms pls pls
@nabinshrestha78343 жыл бұрын
make video on data structure and design and analysis of algorithm
@johnjoyce5 жыл бұрын
Wrong at 0:47. In C you have to create the whole mechanism. structs do it.
@loverboyhk4 жыл бұрын
I love your series no you are great at explaining. However, I wanted to correct you by saying that the concepts of encapsulation, inheritance and polymorphism are possible in C. Therefore it is possible to have OOB in C. But of course it is very verbose so just use C++.
@yahiashams23343 жыл бұрын
So a class is essentially a struct that can have functions.
@crashtagiyevpirt Жыл бұрын
@Artem Katerynych And Struct is in Stack andClasses in Heap
@siddhitasethmadan63883 ай бұрын
Even a struct can have functions.
@javand862 жыл бұрын
So easily understandable. Subbed
@pewpew46637 жыл бұрын
For a split second I thought there was a real chicken behind you just chillin there.
@hamidrezarahimi66513 жыл бұрын
Thank you
@calecacciatore54226 жыл бұрын
Hey Cherno, trying to get back into the programming world, a few questions popped into my head : what do you think about Data Oriented Design (vs. Object Oriented) ? How effective can one use and understand DOD vs OOP ? or should i just stick to procedural kind of programming, that is, use C++ only where needed and mostly stick to C ? I want to be able to understand the computer and what it is doing for performance reasons. What s the speed difference in those applications between the two designs ? there s just not many resources around to poke into.
@allengeringer5742 жыл бұрын
As soon as youtube decides to offer an accredited degree, my University will loose the ability to provide the last thing they still offer to students: the actual piece of paper.
@shrikant_paliwal3 жыл бұрын
Bohot hi Pyara Explanation. (Really Nice Explanation of the concept). Thank You
@primalpimmy5 жыл бұрын
You sir, deserve more Subs.
@hopp.nguyen Жыл бұрын
thank you
@prajjwalyadav38016 жыл бұрын
it's nice to have a background music in the tutorials so that you don't feel sleepy ; P
@Vitonolable4 жыл бұрын
glad you fixed your hair at 0:57
@simon39wang433 жыл бұрын
This vid is sooo helpful, so clear, so efficient ❤️
@sumitkamble_ Жыл бұрын
No more confusion with classes again
@claudiopisa20433 жыл бұрын
I'm wondering why he multiplied the speed of the player
@Mossy063 жыл бұрын
To decide how far the player should move.
@aideenfay30556 жыл бұрын
Thank you so much
@CyroCh. Жыл бұрын
didn't know that using &x will modify the actual value lol i used pointers and... ty