Comments by "MrAbrazildo" (@MrAbrazildo) on "Is Google Trying to Kill C++? (Not Exactly)" video.
-
1:18, prove why Java is easier. Garbage collector is not a reason, since it's bad, clunk, not elegant, and I believe slower than destructor.
1:38, it's half the C++ performance. And C++ can be very defensive, if you code it for that.
2:24, pointless. C++:
auto s = "Low Level...";
int32_t x = 5, *p = &x;
And C++20 has native optional strong type checking, via concepts. Templates were never the issue, even back to 1998, if you use some smart tags.
1