C# vs. C++ Code Comparison

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ก.พ. 2025

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

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

    Thanks Gavin. Please do a deeper dive video when you have a moment. You have a talent in explaining things.

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

      Thank you! Sure - I'd love to a do a deeper dive into this topic! :)

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

    Great.

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

    Great tutorial. I am stupid in C++ and love C#. However, C++ seems singular, and I would love to learn it someday. About the video, I got that C# classes are reference types by default, but how can I behave similarly to the C++ code? Maybe something like BankAccount bankAccount2 = new BankAccount(bankAccount1);?

    • @GavinLon
      @GavinLon  4 หลายเดือนก่อน +2

      That's right, in C# to create a copy of an object in memory - you could just pass the relevant values from bankAccount1 into the constructor of bankAccount2 when you are instantiating bankAccount2 using the 'new' keyword. :)

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

    You should mention that you can instantiate a new object and assign it values not as references. You can also make a constructor to avoid references. It's just another approach than c++. There are pros and cons to both languages. I like c# because I can let my brain rest more. Lol. It's easier but .. also have It's own pitfalls.

    • @GavinLon
      @GavinLon  4 หลายเดือนก่อน +2

      Absolutely. Thanks for your comment. I was trying to keep the example as simple as possible and focus on a small aspect of both languages for the comparison - so I tried to avoid nuances. :) I may do a deeper dive in a later video.

  • @vladyslav-py-js-go
    @vladyslav-py-js-go 3 หลายเดือนก่อน

    Wanna learn them both 😅

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

      I like your way of thinking :)

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

    Gavin lon ❤❤

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

    Great video, but honestly programmers should avoid c++ if they want to keep their sanity

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

      I'll be honest with you. I've been a professional developer for a long time and I would not like to code professionally using C++. You're right - could be a serious mental health risk lol

    • @ulrich-tonmoy
      @ulrich-tonmoy 4 หลายเดือนก่อน +1

      and still tools like blender Godot are programmed in C++
      Maybe for web development the lowest you should go is Go but for system C/C++ is still most used

    • @GavinLon
      @GavinLon  4 หลายเดือนก่อน +2

      @ulrich-tonmoy Sure, absolutely - I joke about C++ but it is of course a fantastic technology and for system development or wherever you are resource constrained by your target device or in general you need highly performant runtime code - C++ or C is the best choice! :)

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

      @@ulrich-tonmoy I just joking you know right 😂😂. I do use c++ for game development in unreal and systems but I prefer to use Java for systems. C++ is good but seriously coding in c++ can make someone go mad

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

      @ulrich-tonmoy - Well languages like C# and Java have the benefit of their designers learning from the C++ language (standing on the shoulders of giants). Yeah C++ and Unreal is probably the best solution for game development. :) I think if I was a professional game development I would also use the Unreal game engine.

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

    Yes - C++ classes are value types by default, while C# classes are reference type by default - creating a reference type class in C++ is possible but awkward, creating a value type class in C# is ... yeah, no...

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

      Thank you! :) Yeah - you can use a 'record' in C# - which kind of simulates the behaviour of a value type (but behind the scenes is a class). You can also use a struct in C# which is a value type.