CLASSES in C++

Sdílet
Vložit
  • čas přidán 29. 08. 2024

Komentáře • 402

  • @huntersan9
    @huntersan9 Před 7 lety +1091

    I can't stop looking at the chicken.....

  • @xyz8206
    @xyz8206 Před 4 lety +134

    3:43 'variables that are made from class types are called objects' this line just made everything so much easy. Thank you.

  • @electronix259
    @electronix259 Před 6 lety +904

    Each of these 10 minute videos teach me more than one class

  • @zzzMrgamerzzz
    @zzzMrgamerzzz Před 5 lety +165

    Never in my Uni days have I seen such a good youtube tutor. Clear, succinct and everything seems so much simpler

  • @serkanozturk4217
    @serkanozturk4217 Před rokem +67

    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

    • @goodvibes7304
      @goodvibes7304 Před 8 měsíci

      And those functions are called methods inside the classes.

  • @oquaika-qua3043
    @oquaika-qua3043 Před 4 lety +28

    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.

    • @rzmadzore
      @rzmadzore Před 2 lety +1

      same here, what a relief

  • @faizalimuhammadzoda4731
    @faizalimuhammadzoda4731 Před 6 lety +172

    I like the way you explain things: very simple, very fast and most importantly-nothing outside the topic. Thanks.

  • @ToxicityGameDev
    @ToxicityGameDev Před 6 lety +540

    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.

    • @Gilpow
      @Gilpow Před 6 lety +16

      Sure, because clearly you're going to learn a lot by using a single source, right?

    • @timmoth_j
      @timmoth_j Před 6 lety +45

      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.

    • @Gilpow
      @Gilpow Před 6 lety +13

      Timothy Jones Yup, it's the least we can do, if we can't support him on Patreon.

    • @batabatonica
      @batabatonica Před 6 lety +12

      They are spamming me python and html, but i watch them anyway to help Cherno

    • @ToxicityGameDev
      @ToxicityGameDev Před 6 lety +8

      @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 ;-)

  • @mukundchandrahasan5890
    @mukundchandrahasan5890 Před 5 lety +31

    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.

    • @zes3813
      @zes3813 Před 3 lety

      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
      @biqbicle4982 Před rokem

      @@zes3813 ??

  • @mtareen
    @mtareen Před 4 lety +14

    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

  • @leixun
    @leixun Před 4 lety +15

    *My takeaways:*
    Class is a way to group data and functionalities together 0:55

    • @rasta6332
      @rasta6332 Před 4 lety +2

      looking for your comment and found it... I hope you have a summary of all the upcoming videos in the playlist.

    • @leixun
      @leixun Před 4 lety +1

      Rasta Thanks, I did write summary for most videos in the playlist, but some of them are more complete than others :)

    • @Aditya-zl8sn
      @Aditya-zl8sn Před 3 lety +1

      commenting for visibilty

  • @colorlord98
    @colorlord98 Před 7 lety +143

    Still waiting for that video on the back of a kangaroo!

  • @nortski78
    @nortski78 Před 4 lety +4

    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.

  • @accessdenied9393
    @accessdenied9393 Před 2 lety +6

    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);
    }

  • @FlooferLand
    @FlooferLand Před 3 lety +5

    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

  • @dildarsk246
    @dildarsk246 Před 6 lety +269

    Cherno becomes teacher.
    100% boys' attendance.
    *200%* girls' attendance.
    *H a n d s o m e*

    • @amndrkwe
      @amndrkwe Před 4 lety +26

      Michael O'Connell if you count us it would be probably 500%

    • @essmunson
      @essmunson Před 4 lety +6

      @@amndrkwe agreed

    • @RoySATX
      @RoySATX Před 3 lety +1

      More like 110% boys attendance, I know I'd be auditing this course

    • @iamtrash288
      @iamtrash288 Před 3 lety +2

      Shadow clone no jitsu

    • @suntzu1409
      @suntzu1409 Před 3 lety +4

      Gaes: ( ͡° ͜ʖ ͡°)

  • @akberalikhan4659
    @akberalikhan4659 Před 4 lety +2

    Explained it quickly and clearly. Saved me a lot of time. Thanks!

  • @danielrousseau6541
    @danielrousseau6541 Před 5 lety +1

    This kind of format is definitely better for both teaching and learning.

  • @r0_
    @r0_ Před 4 lety +1

    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

  • @benixmo
    @benixmo Před 3 lety +2

    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.

    • @tomjesten3945
      @tomjesten3945 Před 3 lety

      Depends on what you want to do with C++.

    • @kylekastilahn
      @kylekastilahn Před 3 lety +1

      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.

  • @abx4t
    @abx4t Před 6 měsíci

    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.

  • @autumnleaf8483
    @autumnleaf8483 Před 3 lety +2

    This is like Roblox Studio Development where everything has a classname, with its own functions! Thanks for the tutorials! I am loving it!

  • @rcookie5128
    @rcookie5128 Před 7 lety +6

    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! :)

  • @christophersheppard3249
    @christophersheppard3249 Před 3 lety +14

    Wow, in 8 minutes you managed to teach me better than my actual cs teacher.

  • @gurjindersingh3843
    @gurjindersingh3843 Před 4 lety +2

    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.

  • @bencilbusher5070
    @bencilbusher5070 Před 3 lety +1

    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.

  • @jaidev2717
    @jaidev2717 Před 4 lety +1

    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.

  • @chastitywhiterose
    @chastitywhiterose Před 4 lety +1

    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.

  • @jmac217x
    @jmac217x Před 2 lety +2

    In 3 min you've explained classes better than anyone and with examples of references too kudos

  • @vidyutphagetra3804
    @vidyutphagetra3804 Před 3 lety +1

    you have a gift of explaining things precisely and without all the bullshit

  • @cheako91155
    @cheako91155 Před 5 lety +1

    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.

  • @yahiashams2334
    @yahiashams2334 Před 3 lety +5

    So a class is essentially a struct that can have functions.

  • @Hydro1738
    @Hydro1738 Před 5 lety +1

    Dude, your explanations are really impressive ... I like your KISS approach ...

  • @ezert_13
    @ezert_13 Před 5 lety +4

    I'm sure I'll recommend this course for a lot of people in the future! : D

  • @emilycs8823
    @emilycs8823 Před 2 lety +1

    These videos make these concepts so simple. I learn more from them than my professors lectures , and college c++ textook.

  • @rachidajewher8649
    @rachidajewher8649 Před 3 lety

    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

  • @chalkchalkson5639
    @chalkchalkson5639 Před 7 lety +11

    "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

    • @FalconGames109
      @FalconGames109 Před 7 lety +9

      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.

    • @zfolwick
      @zfolwick Před 3 lety +3

      You can actually define classes in C. But why would you want to? It important to know in legacy codebases

    • @suntzu1409
      @suntzu1409 Před 3 lety

      ( ͡° ͜ʖ ͡°)

  • @Ferocious_Imbecile
    @Ferocious_Imbecile Před 2 lety

    It's always a relief to find somone that makes an impermiable thicket of jargon become meaningful.

  • @minecetinkaya5763
    @minecetinkaya5763 Před 8 měsíci

    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.

  • @SkeletonSSBM
    @SkeletonSSBM Před 3 lety +1

    Thank you so much! Simple and to the point, yet has great explanations for the things he's doing. Nice work!

  • @MrHaggyy
    @MrHaggyy Před rokem

    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.

  • @sacredgeometry
    @sacredgeometry Před 3 lety

    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.

  • @bayroncastillo7653
    @bayroncastillo7653 Před 6 lety +1

    you are so good at explaining , thank you

  • @skayland
    @skayland Před 3 lety +1

    Wow that was super simple and well explained. i think I'm gonna watch the whole series now lol

  • @nemanjakatava4735
    @nemanjakatava4735 Před 3 lety +1

    found your tutorials very useful, well done

  • @calecacciatore5422
    @calecacciatore5422 Před 5 lety +7

    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.

  • @PythonisLove
    @PythonisLove Před 2 lety

    youtube sucks, it didn't recommend your video, while I was actually learning c++, now it's again making things interesting!

  • @mohit7717
    @mohit7717 Před 4 lety

    thank u so much for providing this c++ series .

  • @rando521
    @rando521 Před 11 měsíci

    you are extremely coherent and i love it.

  • @streetfighteryamahar178
    @streetfighteryamahar178 Před 5 lety +1

    Very clear and understandable video with relevant examples. Thank you.

  • @luobei5083
    @luobei5083 Před 3 lety +1

    group the variable into a type and add functionality to those variables.

  • @roja
    @roja Před 2 lety

    Commenting for your exposure. The best channel on CZcams for C++ !!!

  • @iamzepeqeno5086
    @iamzepeqeno5086 Před 2 lety +1

    me: oh so a class is to organize data ?
    cherno: no... *sight* not data, its DADA

  • @GetBoros
    @GetBoros Před rokem

    Nice example of POD (Plain Old Data) type.

  • @user-kb3zt3cv9s
    @user-kb3zt3cv9s Před 8 měsíci

    this video really helped me understand Classes in C++ thanks cherno♥

  • @mojosace
    @mojosace Před 5 lety +1

    Genius. Learned more in this than in one whole lecture with my awful professor

  • @isaacyuki1
    @isaacyuki1 Před 3 lety +1

    wow u actually simplified 24h of senseless lectures in 8 min.

  • @azriel__
    @azriel__ Před měsícem

    MAN I LOVE THE CHERNO

  • @user-xg2bp5kq9t
    @user-xg2bp5kq9t Před 10 měsíci

    Great lesson! Thank you!

  • @jonathanlevin7660
    @jonathanlevin7660 Před 3 lety

    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)

  • @dalyzee
    @dalyzee Před 6 lety +2

    You just earned a sub.

  • @Rose_Harmonic
    @Rose_Harmonic Před 3 lety

    my brain is exploding with understanding and I am very excited.

  • @fsk648
    @fsk648 Před 7 lety +1

    You kinda look like Luke Steele from Empire of the Sun, you even have the same nationality.
    Keep up these golden tutorials man.

  • @mustafaglnr8780
    @mustafaglnr8780 Před 5 lety +5

    Any thought you have, to build up an episode relative with Polymorphism ?
    if no, please ...

  • @mohit7717
    @mohit7717 Před 4 lety +1

    Please provide a lecture on Data Structure and Algoerithms pls pls

  • @GenericPhantom1
    @GenericPhantom1 Před rokem

    Classes are a way to group data and or functionality.

  • @nafimulyo9739
    @nafimulyo9739 Před rokem

    such a great video. i am beginner and i still understand all of the stuffs that you teach to us! Well done! Thanks :D

  • @mardiyonghasben1619
    @mardiyonghasben1619 Před 10 měsíci

    thanķ you sir....and godbless you...give all human education about and learn programming c++...thank you

  • @NoThing-ec9km
    @NoThing-ec9km Před 4 lety

    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

  • @user-tp3ux1qy8w
    @user-tp3ux1qy8w Před 9 měsíci

    Thank you for simplifying classes for me in c++

  • @dxlge
    @dxlge Před rokem +3

    My notes:
    A class is a way to group data and or functionality together. We can use a class which contains all of our data into this one type. Our class needs to be a unique name.
    Variables that are made from class types are called objects and a new object variable is called an instance.
    Private and pubic is something that we can use in our classes, its main purpose is for visibility. Data and methods that are declared under public can be accessed outside of our class where as anything declared under private is the complete opposite, it can only be accessed inside of that class.
    Classes can contain functions, we call functions inside of a class a method.
    To conclude what a class is, it allows us to group variables together into a type and also add functionality to these variables (our private members). We essentially have data and have functions to manipulate this data.
    Anything that can be done with classes can be done without them, they make our life easier as a programmer and give us the ability to maintain code much better

  • @chiyungchu9463
    @chiyungchu9463 Před 3 lety

    use alt+ up arrow to move selected line up in case u dont know .(go to Edit > Advanced)

  • @simon39wang43
    @simon39wang43 Před 2 lety

    This vid is sooo helpful, so clear, so efficient ❤️

  • @AlexTheGreatish
    @AlexTheGreatish Před 6 lety +2

    That hair is on point in every video.

  • @SolarPlayer
    @SolarPlayer Před 4 lety +1

    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

  • @aideenfay3055
    @aideenfay3055 Před 6 lety +2

    Thank you so much

  • @darikostov9583
    @darikostov9583 Před 4 lety +1

    I am making a game in which i am trying to keep my code tided up by using classes for every character but when it comes to two characters to interact i have problems accessing the other class

  • @pewpew4663
    @pewpew4663 Před 7 lety +1

    For a split second I thought there was a real chicken behind you just chillin there.

  • @swapnilkarmakar3299
    @swapnilkarmakar3299 Před 2 lety +1

    5:10 Can someone explain why did he take Player& player in move function as a one of the parameters.

  • @prajjwalyadav3801
    @prajjwalyadav3801 Před 6 lety +6

    it's nice to have a background music in the tutorials so that you don't feel sleepy ; P

  • @TerranIV
    @TerranIV Před 2 lety

    Thanks for this great overview!!!

  • @primalpimmy
    @primalpimmy Před 5 lety +2

    You sir, deserve more Subs.

  • @CyroCh.
    @CyroCh. Před rokem

    didn't know that using &x will modify the actual value lol
    i used pointers and...
    ty

  • @informativecontent4778
    @informativecontent4778 Před 6 lety +59

    love you brother
    u help a lot
    May Allah bless you

    • @Stephen_Samuel
      @Stephen_Samuel Před 4 lety +5

      Believe on the Lord Jesus Christ, and you will be saved, you and your household. (Injeel Sharif, Acts 16:31)

    • @zainabsiddiqui6154
      @zainabsiddiqui6154 Před 4 lety +3

      @@Stephen_Samuel actually no believe in God and you will go to heaven

    • @zeuscannon7096
      @zeuscannon7096 Před 4 lety +6

      Nigga cat

    • @Stephen_Samuel
      @Stephen_Samuel Před 4 lety +3

      @LetMeSeeThemANKLES
      If you will confess with your mouth that Jesus is Lord, and believe in your heart that God raised him from the dead, you will be saved. (Injeel Sharif, Romans 10:9)

    • @SuyogGadhave1
      @SuyogGadhave1 Před 4 lety +3

      @@Stephen_Samuel Ok let's just fck C++ for a moment. I just wanna know from whom/what am I going to be saved from.

  • @anandchourasia1848
    @anandchourasia1848 Před 2 lety

    Hey Cherno, you can't do this!!!
    You are making C++ too easy.

  • @nikudayo7927
    @nikudayo7927 Před 2 lety

    "functions inside classes are called methods". OMG I've been using those words interchangeably this whole time! :o

  • @hamidrezarahimi6651
    @hamidrezarahimi6651 Před 3 lety

    Thank you

  • @asiarahman6033
    @asiarahman6033 Před 4 lety +2

    0:56 Thank you! Now I ca. Pay attention to what you are saying. 😹😹😹

  • @thoraero
    @thoraero Před 2 lety

    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.

  • @Jonas.verhaegen
    @Jonas.verhaegen Před 8 měsíci

    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.

  • @009MAMAX
    @009MAMAX Před 6 lety

    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!!

    • @undac9590
      @undac9590 Před 6 lety

      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.

  • @sidharthsk84
    @sidharthsk84 Před rokem

    really helpful and resourceful.

  • @marshalstewart7776
    @marshalstewart7776 Před 5 lety

    Super helpful!!! Love your videos!!!!

  • @victorzedwings
    @victorzedwings Před 2 lety

    *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.

  • @SnackKingOfficial
    @SnackKingOfficial Před 3 lety

    I learned so much from this video, the confusion and worry I had is gone.

  • @johnjoyce
    @johnjoyce Před 5 lety +4

    Wrong at 0:47. In C you have to create the whole mechanism. structs do it.

  • @AshleyTyagi
    @AshleyTyagi Před 5 lety +1

    Isn't it called encapsulation when you put data and methods together using a class??

  • @nabinshrestha7834
    @nabinshrestha7834 Před 3 lety +1

    make video on data structure and design and analysis of algorithm

  • @hopp.nguyen
    @hopp.nguyen Před 10 měsíci

    thank you

  • @loverboyhk
    @loverboyhk Před 4 lety +2

    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++.