Comments by "Anony Mousse" (@anon_y_mousse) on "Python laid waste to my C++!" video.
-
37
-
4
-
2
-
@breadiusloafus5068 Well, arrays in C are still indexed the same way, and smart pointers are just abstractions that you only need if you frequently make mistakes, and references are just fancy pointers that you can't change. As for implementing anything yourself, perhaps you've heard of a little thing call code reuse.
I will admit that overloading operators makes things more concise, and that can make things quicker and easier to understand, but only if you don't write spaghetti code, and even then only if the operators chosen really make sense. In fact, operator overloading is the biggest reason why I still use C++ on a regular basis, but seriously, please don't ever use "operator," because it's the one operator that should never have been made overloadable.
2
-
1