C++ CLASSES & OBJECTS explained easy 🧍

แชร์
ฝัง
  • เผยแพร่เมื่อ 11 ธ.ค. 2024

ความคิดเห็น • 37

  • @BroCodez
    @BroCodez  2 ปีที่แล้ว +27

    #include
    class Car{
    public:
    std::string make;
    std::string model;
    int year;
    std::string color;
    void accelerate(){
    std::cout

  • @edvardsauzins7041
    @edvardsauzins7041 ปีที่แล้ว +74

    And then Rick realized he's a c++ object and escaped the matrix 😂

    • @ASTROLOMEGA
      @ASTROLOMEGA วันที่ผ่านมา

      Haahahhaah funny

  • @fotenks
    @fotenks ปีที่แล้ว +12

    You are a very very good teacher and I hope your C++ vids get way more views and praise

  • @marxLz
    @marxLz 2 ปีที่แล้ว +8

    The lessons (the full course version) just pops up my news feed. I'm not here in this course series yet, but soon I'll get on to these lessons. Just finishing the javascript course.
    Pure like bro!!!! 👍👍👍

  • @FrederikWollert
    @FrederikWollert 7 หลายเดือนก่อน +4

    Awesome. I really liked that you made 2 examples.

  • @siddhitasethmadan6388
    @siddhitasethmadan6388 3 หลายเดือนก่อน +4

    By default the members in structures are public. But in classes by default members are private.

  • @Test-m3i8d
    @Test-m3i8d 9 วันที่ผ่านมา

    Perfect explanation and also nice, clear voice - easy to understand for a not-english-man like me. Thanks a lot!!!😀

  • @Benjamin-cx6xb
    @Benjamin-cx6xb 26 วันที่ผ่านมา +1

    Real Bro right there. Thanks Rick!

  • @higiniofuentes2551
    @higiniofuentes2551 ปีที่แล้ว +1

    Thank you for this very useful video!

  • @abishekpathak2818
    @abishekpathak2818 2 ปีที่แล้ว

    thanks bro this is the best video ever seen in youtube...GOD BLESS U.you are like angle for me..keep uploading bro

  • @unruly_ronin
    @unruly_ronin หลายเดือนก่อน +1

    Smooth and to the point as usual. Common Bro Code W

  • @AsvinThakur391
    @AsvinThakur391 22 วันที่ผ่านมา

    Hey Brocade , just wanted to notify you a error not actually so it's error in age where compiler instead of giving the age of human1.age just compiles in the form of F after compilation and I searched it on the the internet and found out that it's a Floating value so solution is just add when writing code "Human1.age="70"; " then the compiler will give 70 while compiling which is what we want !

  • @dandandan3675
    @dandandan3675 2 ปีที่แล้ว +2

    I hope you can make oop playlist in c++

  • @majorbangz
    @majorbangz 6 หลายเดือนก่อน +1

    THE LEGEND IS BACK!!!!!!!!!

  • @higiniofuentes2551
    @higiniofuentes2551 ปีที่แล้ว +1

    You said class is better than structs because they can have methods, well we can create functions with structs too!
    The difference is only the first have the methods inside?
    Thank you!

  • @serein_11
    @serein_11 11 วันที่ผ่านมา

    smooth Rick and Morty reference

  • @Dazza_Doo
    @Dazza_Doo 2 ปีที่แล้ว +1

    looks like you don't have to New Up an object - is C# is making me code MORE than C++ (Egregious)

  • @МихаилПетров-ж2о
    @МихаилПетров-ж2о ปีที่แล้ว +1

    With you OOP is easy

  • @carmi-u3j
    @carmi-u3j 23 วันที่ผ่านมา

    earnd my sub!

  • @12Jerbs
    @12Jerbs 3 หลายเดือนก่อน

    I've created the Human class, but when setting human1.name within int main(), name is highlighted red with class "Human" has no member "name". If I run the code though, it runs without error and outputs the name as expected. Any idea how to resolve this in VSCode?

  • @nitrobeast6629
    @nitrobeast6629 4 หลายเดือนก่อน +3

    what's the difference from classes and structs

    • @siddhitasethmadan6388
      @siddhitasethmadan6388 3 หลายเดือนก่อน +2

      By default the members in structures are public. But in classes by default members are private.

    • @tahawaseem6989
      @tahawaseem6989 29 วันที่ผ่านมา

      Structures can only have member variables where as class can also have member functions that an object can perform along with its member variables(attributes)

    • @siddhitasethmadan6388
      @siddhitasethmadan6388 29 วันที่ผ่านมา

      @@tahawaseem6989 even structures can have member functions

  • @Dazza_Doo
    @Dazza_Doo 2 ปีที่แล้ว +1

    I see Constructors are coming in the next lesson 😋

  • @cyrussacay3903
    @cyrussacay3903 9 หลายเดือนก่อน

    Need help, still confused, is it like struct but with functions?

  • @fracciuolo
    @fracciuolo 2 หลายเดือนก่อน +1

    RICK AND MORTY MENTIONED!!????? WHAT IS A PROPER EPISODE!!??!?

  • @theorange6460
    @theorange6460 9 หลายเดือนก่อน +1

    #include
    class Human{
    public:
    std::string name;
    int age;
    bool isInjured;

    void eat(){
    std::cout

  • @danaildoganov
    @danaildoganov 8 หลายเดือนก่อน +2

    #include
    class Dog{
    public:
    std::string name;
    std::string breed;
    int age;
    void bark(){
    std::cout

  • @bakeronews1
    @bakeronews1 6 หลายเดือนก่อน +2

    Rick & Morty fan 😂😂😂

  • @shricharanramesh7149
    @shricharanramesh7149 4 หลายเดือนก่อน

    Comment no 24

  • @Vincent45678
    @Vincent45678 ปีที่แล้ว +1

    #include
    using namespace std;
    class school
    {
    public: //access specifier
    int roll;
    string name;
    char sec;
    void teach()
    {
    cout