The Downsides Of C++ | Prime Reacts

  Рет қаралды 130,810

ThePrimeTime

ThePrimeTime

Күн бұрын

Recorded live on twitch, GET IN
/ theprimeagen
Blog post: www.thecodedmessage.com/posts...
Author: Jimmy Hartzell | www.thecodedmessage.com/about/
MY MAIN YT CHANNEL: Has well edited engineering videos
/ theprimeagen
Discord
/ discord
Have something for me to read or react to?: / theprimeagenreact
Hey I am sponsored by Turso, an edge database. I think they are pretty neet. Give them a try for free and if you want you can get a decent amount off (the free tier is the best (better than planetscale or any other))
turso.tech/deeznuts

Пікірлер: 802
@ninjaasmoke
@ninjaasmoke 5 ай бұрын
in rust you have a borrow checker in c++ you are the borrow checker
@bresent
@bresent 24 күн бұрын
What about C?
@kcvinu
@kcvinu 16 күн бұрын
@@bresent Same, you are the borrow checker.
@alexpyattaev
@alexpyattaev 10 ай бұрын
In Rust you fight the borrow checker, in c++ you fight the entire compiler, the standard library, the build system in fashion this season, the human laziness, and at least 80% of the c++ commitee all at once.
@KX36
@KX36 10 ай бұрын
but the joy when you win though...
@alexpyattaev
@alexpyattaev 10 ай бұрын
@@KX36 you think you've won, but the real guerilla war is only starting. With UB behind every corner, and memory corruptions scattered in the most unexpected places...
@mek101whatif7
@mek101whatif7 10 ай бұрын
​@@KX36When???
@michaelzomsuv3631
@michaelzomsuv3631 10 ай бұрын
In Rust you fight the borrow checker, in c++, you fight c++, all of it.
@kayakMike1000
@kayakMike1000 10 ай бұрын
​@@KX36winning in this case is only an illusion.
@dickjohnson59
@dickjohnson59 10 ай бұрын
Reading "shared_ptr is slow" everywhere grinds my gears to no end. Yes, reference counting is slow and there is no way around it. But nobody is forcing you to put everything on the heap. What about move semantics? Data oriented programming? Functional programming? I hardly use shared_ptr at all. C++ gives you an almost unparalleled amount of control and possibilities. I have to admit though, being forced to write code in c++ when another language fits the problem much better sucks.
@arcoriuml1875
@arcoriuml1875 10 ай бұрын
yea, i even stop watching as soon he says it
@skilz8098
@skilz8098 8 ай бұрын
People forget that you can basically write C code in a C++ file and still make it compile... However there are some subtle differences between the two languages and what some of the syntax means especially with certain keywords such as the use cases with the auto keyword. However, you can nearly avoid the C++ paradigms and still code in C. This is one really nice feature of C++. The other nice feature about C++ is that you only have to pay for what you use. Sure compilation and sometimes linkage can be slow and tedious, however, well written C++ programs during runtime will do it's best to use the least amount of assembly instructions. Another good thing about C++ but can also be a mess is the optimizations of various compilers with all of their internal flags. It can be a daunting mess to have to either memorize them, look them up, tweak them to see what they do... then trying to figure out what some of them actually do under the hood can be troublesome especially for those who don't have any reverse engineering skills... So yeah, C++ is not without its faults... but what does make it a good language? There's a few things other than just the low cost of overhead at runtime with well written and well structured code and they are its multi paradigm capabilities. It can do just about anything most other languages can. I didn't say everything in all others... but a large percentage. The other thing that makes it a very good language is a combination of the STL or even Boost's version as well as the plethora of APIs, and existing libraries out there. Sure in some ways it can be a clusterfuck but it does have a very broad and extensive ecosystem and they can slightly vary depending on the implementation of the specific compiler. This leads us to the final part of the Language Standard. Compiler developers are free to implement the language in any way they see fit provided that they meet the requirements of the agreed upon standard. If a feature of the language exists and it's supposed to provide some G functionality, as long as the compiler provides that functionality for G, they don't care how the vendors implement it. The standard committee does give them the freedom to have user defined implementations to many parts of the language within a reasonable context. There are ups and downs to the language. Now if I'm writing something like a 3D Graphics Engine / Physics Simulation with having high performance in mind, or I'm writing a Hardware Emulator, etc... then yes C++ or perhaps C would be my first choice. However, I can agree to your sentiment of having to be forced to use a specific language to do a certain task when there are not necessarily better tools but more appropriately adequate tools to get the job done. This goes back to the general saying, "Work Smart, not Hard!"
@dickjohnson59
@dickjohnson59 8 ай бұрын
@@skilz8098 you're right, C++ gives you almost all of the tools you could want, if you include boost and some other well-maintained libraries. I think the biggest issue with c++ is not its lack of features, but the buttload of backwards compatibility cruft that people still use, but really shouldn't. Obligatory Stroustrup quote: "Within C++, there is a much smaller and cleaner language struggling to get out" If we had a new c++ with only the modern features, that would be awesome. Maybe cppfront or carbon can deliver that, but I wouldn't get my hopes up. For my private projects, I am in the process of learning Rust and it's already really enjoyable.
@USGrant21st
@USGrant21st 3 ай бұрын
Java programmers automatically write shared_ptr in C++ when they need a pointer, because they don't know how write correct code.
@vedqiibyol
@vedqiibyol 27 күн бұрын
Exactly, what shared_ptr, weak_ptr and unique_ptr provide is just a wrapper around a heap allocated object and the use of that data structure is only reasonable in multithreading where saying who has ownership over the data is crucial, however you can also accomplish that with elements on the stack... The only other reason why you'd allocate on the stack is when you have a lot of elements incoming that you deal with and discard, but ideally you store them in a vector or a map and those data structure handle the allocation themselves...
@sinom
@sinom 10 ай бұрын
Cpp as of C++17 has tuple destructuring which is way nicer than using get or .first .second everywhere
@TheSulross
@TheSulross 10 ай бұрын
yeah there's been a rather fast uptake of C++17 so bashing C++ because of tuples is rather ridiculous at this point in time
@TanigaDanae
@TanigaDanae 10 ай бұрын
Structured binding? Which also has a little footgun attached to it, that it is harder for the compiler to do return value elision.
@igorordecha
@igorordecha 10 ай бұрын
What about .threehundredfiftyseventh?
@ancentropia3418
@ancentropia3418 10 ай бұрын
⁠​⁠​⁠​⁠​⁠​⁠​⁠​⁠​⁠​⁠​⁠​⁠@@Robertoclos-ib7ccIn the name of the Spaghettimonster, i invite you to worship the Spaghettimonster alone: I bear witness that there is no god but the Spaghettimonster, and I bear that your Dad is the messenger of the Spaghettimonster. These words make you a servant of North Korea.
@USGrant21st
@USGrant21st 3 ай бұрын
@@TanigaDanae there is copy elision and return value optimization, which one you are talking about?
@ericbwertz
@ericbwertz 10 ай бұрын
"And the header files still have all the private members of the class inside...!" IMnHO, THIS is the most horrific fail in C++, on par with simply having to wake up every day to program in either Perl or JS except as a matter of sheer survival.
@ruanpingshan
@ruanpingshan 8 ай бұрын
And if you want to make a C++ wrapper of a C library, you still have to pollute your entire namespace with the C headers, because otherwise you can't declare private members using types from the C library. The only alternative is the ugly Pimpl pattern.
@USGrant21st
@USGrant21st 3 ай бұрын
What's exactly your objections about private members in class? That sentence you wrote doesn't make sense.
@USGrant21st
@USGrant21st 3 ай бұрын
@@ruanpingshan how is including headers suddenly becomes "polluting"? And of course, there are module in C++ as well.
@ruanpingshan
@ruanpingshan 3 ай бұрын
@@USGrant21st The moment you include gl.h, you have every single OpenGL function, typedef and macro in your global namespace. That's namespace pollution. And making C++ wrapper classes is not an easy solution, because if your gl_wrapper.h uses any OpenGL type, then you have to include gl.h in gl_wrapper.h, and whoever includes gl_wrapper.h will get everything from gl.h as well.
@khatdubell
@khatdubell 10 ай бұрын
"I don't quite understand that" unique_ptr is move only. A default constructed unique_ptr is going to be a nullptr. But per the rules of this new class he's talking about, you don't allow nullptr. So you can't copy it into place. Now, because you disallow nullptr, you can't move it into place. The only option left is to pass it by reference.
@insu_na
@insu_na 10 ай бұрын
Why would you create an empty unique_ptr? that doesn't even make sense... You should always use make_unique() anyway
@JonathanTheZombie
@JonathanTheZombie 10 ай бұрын
@@insu_na correct. It can't be unique if it doesn't exist.
@danielsan901998
@danielsan901998 10 ай бұрын
@@insu_na To pass the pointer, when you do a move in a unique_ptr the variable is left with a nullptr to guarantee that it is unique instead of having the pointer duplicated and later you can reuse the variable to assign it to other pointer.
@sinom
@sinom 10 ай бұрын
@@insu_na Sometimes when you have a unique_ptr as a member in a class and are interacting with some C api you need to first set up some stuff in the constructor with that C api so you can't set the unique_ptr in the initializer list. In those cases you might want to make them nullptr temporarily.
@khatdubell
@khatdubell 10 ай бұрын
@@insu_na "Why would you create an empty unique_ptr? that doesn't even make sense..." Well, there are, in fact, plenty of reasons, though i wouldn't label any of them as "good". People don't create empty smart pointers because they _want_ to, they do it because they _have_ to. Something i've had to do on many occasions. Secondly, welcome to the ethos of C++. Its not the job or the goal of the language to decided the why's of what you may or may want to do. It provides the toolset, you provide the use of the tools as you require. "You should always use make_unique() anyway" You can use make_unique to make a defaultly constructed (null) pointer.
@reikooters
@reikooters 10 ай бұрын
Tuples are actually good as return types in C# since you can name the parameters instead of having to use .0 or .1. I almost never use "out" parameters.
@FalcoGer
@FalcoGer 10 ай бұрын
A function should return one thing. Make a class for the return value if you need to. Narrower types are better and it communicates intent better. At least you're not returning a string tough. Good job.
@reikooters
@reikooters 10 ай бұрын
​@@FalcoGer I agree with you, but sometimes it feels overkill to create a class just cause you want to get back 2 things instead of 1, especially if it's for some private functions in a class which are called by other public functions in the same class - or to put in simpler terms, when it's a one-off scenario and the function would not really be called anywhere else or need that data passed around together. The most common case where I'd return a tuple if it were a public function is say a function which queries the database or calls some external API, I could return an enum and an object. The enum indicates either success or a specific error in cases where there are well-defined outcomes (e.g. here's the data, or data didn't exist, or exists but you don't have permission etc, to save multiple function calls/trips to the database to first check those things), while the object is some nullable class (lets say a Customer object) which would be null if there was an error. Yes, to make it return 1 thing then something like a DatabaseResponse could also work which has the result and object. But again, such a function probably only gets called by 1 or few endpoints and don't have a need to pass them around together, so I just use a tuple, so I get back basically two "destructured" variables which I can give a friendly name like "queryResult" and "customer", rather than using "response.data" to get at the data. I understand this is just a style preference.
@philipmrch8326
@philipmrch8326 10 ай бұрын
Yeah the tuples in C# are amazing
@morsee
@morsee 6 ай бұрын
Since functions can have multiple parameters, doesn't it make sense for it to be able to return multiple things ? @@FalcoGer
@aenpien
@aenpien 5 ай бұрын
@@FalcoGer "A function should return one thing." Says who? Anyway, a tuple is "one thing". It just saves you the trouble of creating a class just for this one function's return type. Makes the code a lot lighter.
@sledgex9
@sledgex9 10 ай бұрын
1. I think the problem with std::tuple can be solved with structured bindings. 2. IIRC Herb Sutter is working on a new modern C++ syntax which transpiles entirely to regular C++. His transpiler is named cppfront, inspired by the cfront compiler which was the 1st C++ compiler which compiled C++ to C code.
@GiovanniCKC
@GiovanniCKC 10 ай бұрын
1. we do have structured bindings in >=C++17 I believe, so perhaps or perhaps not. 2. thatlooksabsolutelybeautifulthankyouforsharingthatthat'ssogood!
@curlyfryactual
@curlyfryactual 10 ай бұрын
1. Is addressed in the updated article in the description of the video. Essentially, Hartzell's take is that it's a half-way fix because it isn't first class tuple support.
@Spongman
@Spongman 10 ай бұрын
@@curlyfryactual it _is_ first-class, though. it's in the standard library. there's no need to add features directly to the language if the language is already expressive enough to express them effectively in library code. should filesystem access be in the language?
@curlyfryactual
@curlyfryactual 10 ай бұрын
@@Spongman that does not constitute first class support. Consider: being unable to use the standard library.
@Spongman
@Spongman 10 ай бұрын
@@curlyfryactual if you're unable to use the standard library then you're not using all of c++. the problem is yours, not C++'s.
@katiefincher2433
@katiefincher2433 10 ай бұрын
When a comment section full of javascript developers try to grok what's so great about c and c++. lol.
@OnusofStrife
@OnusofStrife 8 ай бұрын
I remember learning about the copies back in 2008 - 2010 while I was learning c++. The book Accelerated C++ was really good at pointing this stuff out. They sure as heck didn't even mention this stuff in my college c++ class I took later!
@haotj
@haotj 10 ай бұрын
const is a C problem, C++ had to inherit.
@USGrant21st
@USGrant21st 3 ай бұрын
Why is that a problem? The choice of default non-const is actually the right one. It's more often than not variables are non-const than const. If someone doesn't understand whether something should or should not be const, they aren't skilled programmers and usually compiler will stop them. There is no difference from the point of view of safety which default is used, people can be just as profligate with mutable as they are with const if they are not proficient.
@sinom
@sinom 10 ай бұрын
C++20 does finally have modules though sadly there's barely any libraries that support it meaning you'd have to wrap everything
@gagagero
@gagagero 10 ай бұрын
And barely any compilers.
@danielsan901998
@danielsan901998 10 ай бұрын
C++23 will provide the modules std and std.compat to solve that issue, let's hope that in the future new libraries created with modern C++ will use modules.
@sinom
@sinom 10 ай бұрын
@@gagagero All three major compilers have module support. GCC is almost completely compliant with just two papers concerning some issues with the initial drafts of modules not being implemented. Clang is compliant to a usable state but also has a few edge case issues. MSVC is fully compliant. But yes it would be nice if Clang and GCC also were fully compliant but that will probably still take a few months
@cbbcbb6803
@cbbcbb6803 10 ай бұрын
Could you just use C language libraries that are used by python? Or are they deliberately written so that nobody but python can use them?
@marcs9451
@marcs9451 10 ай бұрын
no point in using them, as C++ will have to export and speak the C ABI either way. so header files will still be arounf
@sociocritical
@sociocritical 9 ай бұрын
Funny where I work we also have non nullable versions of smart pointers. They can not be initialized as null pointer, but they can be moved and after move the non nullable smart pointer is null, which renders them kind of useless and already caused a few crashes.
@jimmyhartzell4361
@jimmyhartzell4361 5 ай бұрын
Yeah, that's exactly why you can't have moveable non-nullable smart pointers!
@lukeskywalker2255
@lukeskywalker2255 10 ай бұрын
I honestly like c++ but I haven't ever made a bigger project so I don't think my opinion matters much. I literally have 3 repo's on my github and I'm proud of only one of them. (1 from when I was learning pure JS alongside HTML and CSS, and 2 made in C++)
@KX36
@KX36 10 ай бұрын
Smart pointers and RAII in your own classes get you all the memory safety. You never have to new and delete. std::visit and std::variant kind of do what Rust enums do, C unions can also be used but not as safe. C++ has tuples, but structs are always better. Smart pointers used correctly are actually no slower than raw pointers; people do use shared_ptr wrong though.
@GiovanniCKC
@GiovanniCKC 10 ай бұрын
this. more people please recognize this. (also tuple destructuring & spreading is a thing as well).
@iverbrnstad791
@iverbrnstad791 10 ай бұрын
One of the biggest wants for me is to have match/switch on enum/variant that compile time checks for coverage, something I am not aware of existing in C++ at present.
@corypaik8637
@corypaik8637 8 ай бұрын
@@iverbrnstad791like -Wswitch and -Wswitch-enum?
@jimmyhartzell4361
@jimmyhartzell4361 5 ай бұрын
Reference invalidation is quite possible without borrow checker, std::variant is terrible compared to Rust Enums, as you agree by saying they “kind of do” what the Rust one does… Rust has the real deal!
@USGrant21st
@USGrant21st 3 ай бұрын
Agree with most, except "structs are always better." Use struct if you need struct. The power of std::tuple is that it's a generic type and can be used in generic code. In fact, some algorithms work on tuple-like types (tuple, pair, array). The key to genericity is concepts, which allows multiple types to be used in uniform ways.
@Heater-v1.0.0
@Heater-v1.0.0 8 ай бұрын
That is an amazingly short list of C++ paper cuts. He could have gone on much, much longer.
@jimmyhartzell4361
@jimmyhartzell4361 5 ай бұрын
Wish I had! I have more posts though!
@sinom
@sinom 10 ай бұрын
Unique pointers in C++ get completely compiled away and are only compiler safety mechanisms. Only shared_pointers have overhead and that is the minimum overhead required for reference counting (so like using an rc in rust)
@dickheadrecs
@dickheadrecs 10 ай бұрын
“shared_ptr is slow” is a dumb statement without any additional context
@ludoviclagouardette7020
@ludoviclagouardette7020 10 ай бұрын
That is almost true, unique pointers can add a bit of code to handle exceptions
@framepointer
@framepointer 10 ай бұрын
Depending on the ABI, unique_ptr may not be zero-cost. kzbin.info/www/bejne/qHmsnKWlqbiqmcU
@Mond-mk7tk
@Mond-mk7tk 10 ай бұрын
There's a talk titled 'There are no zero cost abstractions' which has a section on why unique_ptr can have a significant overhead in very special, high-performance situations and across boundaries? I recommend watching that part, very insightful.
@mgostIH
@mgostIH 10 ай бұрын
unique_ptr in C++ must use the allocator (heap by default), some cases of compiler optimization can happen where the heap allocation is removed, but this is not the general case, they aren't compiled away.
@user-rp7lc8fb3v
@user-rp7lc8fb3v 10 ай бұрын
Thank you for putting my pain about c++ into words. Can you make an overview of cppfront pls?
@USGrant21st
@USGrant21st 3 ай бұрын
you could have better spent that money buying a good C++ book, which would have alleviated your pain caused by illiteracy.
@user-rp7lc8fb3v
@user-rp7lc8fb3v 3 ай бұрын
@@USGrant21st 🙂
@informedcitizenry874
@informedcitizenry874 10 ай бұрын
guys, I'm dumb. What the heck is "const char *void" (about 14:40 in the video)? I have never seen something like this before.
@bary450
@bary450 10 ай бұрын
it's just a typo
@informedcitizenry874
@informedcitizenry874 10 ай бұрын
ok thanks wasn't sure it was some cryptic K&R syntax @@bary450
@jimmyhartzell4361
@jimmyhartzell4361 5 ай бұрын
Fixed in the article haha
@Harold046
@Harold046 10 ай бұрын
The part on tuple was enjoyable to me... I'm working with Python right now, and I'm so sick of tuples. So much values everywhere, and I don't have the slightest clue what half of them do ! I would also agree that out-parameters aren't a great pick. I rarely use those myself. Because I believe defining a struct for the return type and instantiating it with brace initializers is the best way to tackle this issue.
@jesustyronechrist2330
@jesustyronechrist2330 10 ай бұрын
In Python, I just treat tuples like lists and everything works lmao.
@TheSulross
@TheSulross 10 ай бұрын
C++17 added destructuring of tuples - so syntactically looks similar to returning multiple values in Go, so is a breeze to use and the code is clear
@CottidaeSEA
@CottidaeSEA 10 ай бұрын
Whatever happened to return types? I've seen multiple void methods in C# that have a single out variable. It's stupid.
@climatechangedoesntbargain9140
@climatechangedoesntbargain9140 10 ай бұрын
@@jesustyronechrist2330try editing tuples
@Lemmy4555
@Lemmy4555 10 ай бұрын
In Julia they have something called NamedTuples, you can give names to elements in your tuples, and you won't forget what they are. No need to define a struct just for that :)
@mrmaniac9905
@mrmaniac9905 10 ай бұрын
I don't care what you say. C++ is both easier to use and less annoying than rust.
@Hector-bj3ls
@Hector-bj3ls 3 ай бұрын
You are wrong.
@sid4579
@sid4579 2 ай бұрын
how does it feel to be wrong?
@mrmaniac9905
@mrmaniac9905 2 ай бұрын
@@sid4579 feels bad
@albumin30days90
@albumin30days90 2 ай бұрын
have you spent an equal amount of time in both? #teamcpp tho
@Leonhart_93
@Leonhart_93 2 ай бұрын
Yeah, the tiny but loud Rust community have sniffed their own farts for far too long 😂
@sealsharp
@sealsharp 10 ай бұрын
other programmers: this is an int c++ programmers: i'll make this a typedef just in case i want to compile it for a 42 year old CPU other programmers: this is a string c++ programmers: thank god i don't need to typedef this because there already is a typedef of a typedef of a typedef of a typedef of a typedef just in case we need to run this cloud database driver on windows 1.0 or the apollo 11 hardware.
@totof2893
@totof2893 10 ай бұрын
rewrite this message in 42 years, when your program has been written to run on a 42 years old CPU and sadly never got updated because one client keeps to say 42 years old CPU are the best and they pay for it
@khatdubell
@khatdubell 10 ай бұрын
Yes. c++ has to run on a large number of platforms, including the one’s keeping your airplane in the sky. yeah, they are 42 years old, sadly.
@damnstupidoldidiot8776
@damnstupidoldidiot8776 3 ай бұрын
This is mainly a C problem, where when you need to print it out you don't know the specifier to use.
@USGrant21st
@USGrant21st 3 ай бұрын
may I ask you, what's "int"?
@sealsharp
@sealsharp 3 ай бұрын
@@USGrant21st trick question, whatever you want it to be.
@farrongoth6712
@farrongoth6712 9 ай бұрын
13:47 this is wrong as well at C++11 and up if you mark the return type tuple your can literally just for example Tuple return { a, b }, this works for structs and classes as well. C++11 you would need std::tie, but C++17 has destructuring.
@jimmyhartzell4361
@jimmyhartzell4361 5 ай бұрын
Still not as good as just using ()s for the type and the pattern. Writing out std::tuple is too much. Remember this is papercuts, not serious issues😜
@remrevo3944
@remrevo3944 10 ай бұрын
1:42 I almost never access tuple fields, but use destructuring to bind the fields to variables.
@Robertoclos-ib7cc
@Robertoclos-ib7cc 10 ай бұрын
In the name of Allah, I invite you to worship Allah alone: I bear witness that there is no god but Allah, and I bear witness that Muhammad is the Messenger of Allah. These words make you a servant of Allah. ............ .........
@Stasenko58
@Stasenko58 9 ай бұрын
okay, but here is a question, does rust has equivalent of std::launder from c++? No? So How do you wash your dirty pointers otherwise?!
@TanigaDanae
@TanigaDanae 10 ай бұрын
Smart pointer can be lightweight in the form of a unique_ptr and weak_ptr or heavy weight in form of shared_ptr. The problem is to properly handle unique_ptr (e.g. as part of a vector or other classes) you need to have more fundamental knowledge about move(), release(), swap() and copy() / the copy constructor.
@voidwalker7774
@voidwalker7774 10 ай бұрын
Good lord, i love Rust now even more.
@TanigaDanae
@TanigaDanae 10 ай бұрын
@@voidwalker7774 in Rust you also have your dyn, Box, Rc, Cell, Arc ... stuff you need to properly learn to use. The borrow checker might help though.
@KX36
@KX36 10 ай бұрын
can't have a weak_ptr without a shared_ptr. unique_ptr should usually be what's used for ownership and raw pointers for non-owned. unique_ptr is just as fast as raw ptr. valid use cases for shared_ptr exist but they are the exception, not the rule. People just overuse shared_ptr.
@isodoubIet
@isodoubIet 10 ай бұрын
@@KX36 Yep I have found one valid use of shared_ptr so far and I'm not even sure it was a good one (I used it to solve cache invalidation in a multithreaded context, that way things don't die immediately when evicted). Value types like vector are the thing I reach for first, unique_ptr second, and shared_ptr a very distant third.
@anon1963
@anon1963 10 ай бұрын
​@@voidwalker7774yes it's good for people that get headache when they try to use their brain.
@Bolpat
@Bolpat 8 ай бұрын
18:30 Yes, copy-and-swap is boilerplate and "MyClass& operator=(MyClass) = default" should be a thing. But it’s not tricky.
@jimmyhartzell4361
@jimmyhartzell4361 5 ай бұрын
People get it so wrong though!
@zactron1997
@zactron1997 10 ай бұрын
Tuples are bad if you're "using them wrong". What I love doing in Rust is just destructing the tuple once I'm using it. Then bundle it back up if I need to. And yeah, if I need a particular tuple a lot, then it'll be promoted into a struct.
@jesustyronechrist2330
@jesustyronechrist2330 10 ай бұрын
Are you playing chess on Rust or something?
@frydac
@frydac 10 ай бұрын
Tuples should only be used in (highly) generic code imho, otherwise just make a struct with named members, so much more readable. I barely ever use tuples/pairs, and I do write somewhat generic code from time to time.
@taragnor
@taragnor 10 ай бұрын
Tuples are mainly useful for whenever you need a function to return multiple values that aren't specifically related in any way and are expected to be split up immediately on being returned.
@Robertoclos-ib7cc
@Robertoclos-ib7cc 10 ай бұрын
In the name of Allah, I invite you to worship Allah alone: I bear witness that there is no god but Allah, and I bear witness that Muhammad is the Messenger of Allah. These words make you a servant of Allah. ............ .........
@KilgoreTroutAsf
@KilgoreTroutAsf 10 ай бұрын
6:55 You may like it or not, but it makes perfect sense. for larger projects, library components and APIs. Why on earth would you want to know the specifics of a function at compiler time? How about libraries and system calls that you don't program yourself? How about module/library interfaces where you only want to expose a minimal set of functionality and abstract its inner workings? Do you think a compiling a separate module should also have to deal with avoiding symbol and namespace collisions from every other module in your system? Do I NEED access to the full source code of the C++ standard libary's just to compile a program? Isn't modularity and replaceability a major goal in software engineering?
@Robertoclos-ib7cc
@Robertoclos-ib7cc 10 ай бұрын
In the name of Allah, I invite you to worship Allah alone: I bear witness that there is no god but Allah, and I bear witness that Muhammad is the Messenger of Allah. These words make you a servant of Allah. ............ .........
@Omnifarious0
@Omnifarious0 10 ай бұрын
The non-nullable owning smart pointer can't be moved from because what would the value of the pointer be after you moved from it? The obvious answer would be "null", but, it's non-nullable. You're breaking an invariant if you do that. And one of the rules for move (a style rule, but this is a rule, not a guideline, your code is broken if you don't do this, even if your compiler doesn't tell you) is that the moved from object must still be in a valid state.
@isodoubIet
@isodoubIet 10 ай бұрын
"You're breaking an invariant if you do that. " Yes, but you could have it set so it throws on access so that the only valid operation for a nulled pointer is the destructor call. IMO the policy of making the moved-from state "valid but unspecified" is a mistake.
@hpesoj00
@hpesoj00 Ай бұрын
Moved-from unnullable smart pointers can just be put into an undereferencable state (that is most likely internally null). They're still very useful. And if you find yourself having to implement destructors or move operations in high-level classes, you're doing it wrong. Write low-level resource management wrappers, compose your class of those and let the compiler generate the special operations for you.
@KyleHarrisonRedacted
@KyleHarrisonRedacted 10 ай бұрын
Wait, I get the hint that out parameters are bad? I use em all the time, what’s wrong with out parameters?
@Jabberwockybird
@Jabberwockybird 2 ай бұрын
9:00. Where I work, const has been in the linter so long, that it's ingrained in us to use cost by default. Except it's JS, so it's not a const const. We haven't switched to DreamBerd yet, ik ik.
@zxuiji
@zxuiji 10 ай бұрын
19:37, this next point is something I'm planning to solve with the PATH environment variable, let's say you built an app for the 1st version of the library I'm making but the library has since advanced to version N. Rather than make you update the app the user would instead be required to launch the app with the correct version of the library bound, for example: > paw1 --start app ... app ... > paw2 --start app ... error app not found > paw --start app ... error app not found paw1 shall always map in version 1 of libpaw and the related directories, in this scenario the app can expect the entire ABI of libpaw to match that of the 1st version and any libraries that the app relies on besides libpaw to likewise rely on the same version of libpaw. When paw2 is used instead the attempt fails because the app is not in the libpaw2 directories and thus not mapped in via the PATH environment variable. As for the final example, paw shall always map to the latest version of paw (in this case paw2) by default, there will be 0 need to maintain old APIs between versions (besides the possible scenario where there's no need to change them, buffer functions for example). The 1st version of paw (paw1) will expect *.exe apps since wine can be used elsewhere to launch them, this simplifies the build process since you don't need to do multiple versions of the same binary (which would defeat the purpose of paw, to eliminate native programming as the default programming paradigm for C/C++/C#/Obj-C and instead make fully cross-platform programming the default. For the ABI issue there will be separate directories for each ABI so there's not even a need to check against the back end of integer types like pawjd which by default maps to __INTMAX_TYPE__ (paw will insist on GNU compatible binaries so only GCC, Clang, etc are valid for compiling with). For intmax_t there's a whole bunch of crap apparently that goes on at the back to maintain ABI compatibility between x86 & x86_64 binaries etc. For paw this is not even worth considering since the binaries simply don't get mapped in if they're not matching the current ABI so paw is free to break ABI compatibility as much as it likes between directories so long as the API remains the same for the version it's mapping to. Likewise because of those directories there's not a need to maintain API compatibility in the future if a compelling reason to drop/change it comes up (like security issues) so the compiler will be able to catch these differences and force an update of code where it matters.
@zxuiji
@zxuiji 10 ай бұрын
@@Robertoclos-ib7cc wtf? God DOES exist, he is information itself, every bit of light, sound, etc that comes at us is just a representation of information that already existed before we were even born, before the universe even came to be. To deny God is to deny your own existence, it is to declare whole heatedly you are of the biggest fools there are on earth. It is the same as declaring you can't look beyond your own bubble of senses to what lies beyond time and space. Until you do you will never find God in this lifetime and in the next it will be far too late for you to find salvation for your soul, to find pardon for your offences against God (like the one you just committed). Lord knows I'm not worthy of him either but that doesn't change that he went to the cross in human form (Lord Jesus Christ) for ALL of us. He endured the price you will likewise endure if you do not refuse to acknowledge God as your Lord and trust HIS ways, not the ways of the blind like all who treat MAN MADE "gods" as as anything more than simple idols that need to be abandoned. At best they're simple entertainment, at worst they're devils of satan deceiving the masses.
@mworld
@mworld 10 ай бұрын
Making Breadth First Search in C++ was easy, in Rust how ever it was a no go for me. I did not work out the life time things (since pointers are a must for this to not take up GigaChads of memory). I was curious about the speed of Rust compared to C++ using the same dataset for BFS. I also wrote and tested Go and Java versions, both very slow. Probably due to not using pointers.
@alxioo
@alxioo 10 ай бұрын
What you mean by very slow? 2x, 5x, 10x slower? How exactly your graph representation looks like? I remember playing with similar stuff and Java was about 2x slower only
@DavisTibbz
@DavisTibbz 9 ай бұрын
How slow was your Golang version. I would like to see your Go
@ruanpingshan
@ruanpingshan 8 ай бұрын
Almost anything involving graphs (especially undirected and with cycles) seems like a real pain to implement in Rust. I've even seen people in the community recommending unsafe Rust for graph data structures.
@origamibulldoser1618
@origamibulldoser1618 7 ай бұрын
How are smart pointers slow? Which type of smart pointer?
@aliendroid8174
@aliendroid8174 8 ай бұрын
Call me crazy but I love c++. The main thing I like about c++ is that I can choose how much abstraction I want we where and in many cases I can use abstractions without sacrificing performance. I also like being able to do the dangerous low level stuff manually if I really want to. I do hate having separate header files and source files so I just write the implementation in the header file. Sure it's going to make compilation take a bit longer but soon I'll be able to easily convert those headers into modules once they are better supported.
@0xCAFEF00D
@0xCAFEF00D 10 ай бұрын
7:20 Do you really need multi-pass compilers for that? Just presume the identifier exist. Error some other time. I'm sure that's more complex but the ergonomics of not needing redundant code for basic features of the language seems worth it. Consider the multiplied effort of every user of the language vs the implementation cost.
@khatdubell
@khatdubell 10 ай бұрын
C++ compilers are actually multi pass.
@vocassen
@vocassen 10 ай бұрын
But you need to still know what the identifier is declared as, not just that it exists. Maybe you need to implicitly cast an argument, maybe it has default arguments you need to put in, etc. So unless you go ahead and parse the source files for every compilation job separately, multi-pass is a reasonable method. Or implicit "header" files that get updated with the source file on demand.
@outlawfps3948
@outlawfps3948 2 ай бұрын
I don't know if I just had an insanely insightful professor when learning c++, or if I have just used it enough to get over the learning curve, but it seems that most issues with c++ come from people trying to write C code in C++. Yeah, it's valid syntax and will work, but that's not the point. If you "embrace the c++" and use the features as intended and not try to overthink it, I think you'll have a better time with it. Remember that performance and generics aren't the be-all-end-all and that sometimes using other paradigms, like functional programming, lambdas, etc., can be a very nice supplement to your C++ coding experience.
@AkiiiMatcha
@AkiiiMatcha 10 ай бұрын
One question, where is he finding all those articles?
@Tigregalis
@Tigregalis 10 ай бұрын
You can go longer with a bad decision in Go than you can in Rust - is that a good thing though?
@curlyfryactual
@curlyfryactual 10 ай бұрын
The C++ experience is like when your stomach grumbles for hours but when you finally get to the restaurant you realize you've entirely lost your appetite.
@curlyfryactual
@curlyfryactual 10 ай бұрын
@@Robertoclos-ib7cc who are Allah's people?
@maxoumimaro
@maxoumimaro 10 ай бұрын
I'm a c++ dev and really I disagree with this man. For me, the biggest problems are : - Optionals and variants are not first class citizens (meaning, you cannot at compile time unsure that the content of the object has been check before unpacking it (see Rust and Zig for this type of things)) - inheritance is just pure pain, I am good with the language, I can understand most template wizardry etc but the moment you throw multiple inheritance in the mix, it is hard to get what is going on and I have to travel between multiple files to get it (just a stupid way to make your code obscure). - exceptions are a mess, like the const keyword, c++ has a noexcept keyword, which a few devs might use, but then nobody does use them, making it a pain to know if you have to catch something and most often, you just never try catch anything and hope that your test may tell you to use one.
@MI08SK
@MI08SK 10 ай бұрын
I hope optionals and variants will be practical when c++ will get pattern matching
@khatdubell
@khatdubell 10 ай бұрын
That last one is a pain point of mine. It’s also risky to declare something as noexcept in a large project because someone will violate that contract. On balance I think violating noexcept is worse than not adding it in the first place. Needs more work!
@maxoumimaro
@maxoumimaro 10 ай бұрын
@@khatdubell to be honest, I just try and return value errors like in C. It's not very readable but at least the error is contained and not propagated to god knows how many calling functions.
@DN-fr2ez
@DN-fr2ez 10 ай бұрын
Isn't multiple inheritance a big no-no?
@maxoumimaro
@maxoumimaro 10 ай бұрын
@@DN-fr2ez Well there are people not knowing this. Plus sometimes it's just not "multiple" inheritance but "inheritance everywhere" which in my opinion os just as bad. I trier going into some codebases just to need to jump to many places all the time. At some point I just dread inheritance if it means getting code from parent class. One abstract class from time to time, why not.
@USGrant21st
@USGrant21st 3 ай бұрын
Why are the complaints about C++ always come from people having at best very superficial knowledge of the language?
@Phantom-lr6cs
@Phantom-lr6cs 3 ай бұрын
these people are clowns^3 XD
@insu_na
@insu_na 10 ай бұрын
So I've been using C++ for many years now (tho I'm not a dev by trade) and all of these papercuts that he's listed, aside from the `const` papercut, were things that you have to be *taught* wrong in order to do it wrong. How is it not obvious that `=` is *always* a copy? You read one page of a C++ for dummies book and it will tell you that with `=` you copy a value from one place to another. It doesn't say "move". Also what kind of abomination is `void funct(const char void* mesg, [...])` who dropped this man?
@anlumo1
@anlumo1 10 ай бұрын
Knowing something intelectually and keeping it in mind in everyday work are two very different things.
@barutaji
@barutaji 10 ай бұрын
This behavior is completelly consistent with the way C does things. I got a hard time understanding that '=' passes values as reference in python, because I learned the C way first.
@sinom
@sinom 10 ай бұрын
A lot of people will come from a reference counted language like Java or JS and in those because you're actually only passing around pointers/reference when assigning things, it seems like = is a reference not a copy.
@LushContrive
@LushContrive 10 ай бұрын
@@anlumo1 True, but where do you put the line what someone has to know and what not? I think there are at most 5 people on this planet that know every thing about C++, but there are some very very basic things every one who writes C++ code (and is not an absolute beginner) should know about. And assignment is one of those things. And 'because language X makes it the other way around' is not an argument but a distraction. Because FORTH uses UPN the way C++ makes calculation is bad and should be changes! :)
@perigord6281
@perigord6281 10 ай бұрын
I really doubt that someone who is talking about smart pointers doesn't know `=` always copies. Also wasn't that entire part of the article basically about how implicit copying is default?
@vedqiibyol
@vedqiibyol 27 күн бұрын
That's not how header files should be understood, they are required by the compile when objects are to be linked, ideally you wouldn't want to recompile every parts of the glibc at each compilation, header file only define the signatures, structures and symbols that have been implemented in the glibc. glibc is then linked by the linker when your program is compiled. Most people think of header files as libraries but it's not that, you can find single header libraries where the source code is in the header itself, this approach is fine for small libraries, however it quickly slows down compile time, why would you want to recompile the same module everytime you make a change? Header files are also the literal foundation of bindings, any language that want to allow other languages to bind has to be able to create an object file, and an equivalent to a header file somewhere so that the linker may still know what its dealing with....
@samanthaqiu3416
@samanthaqiu3416 10 ай бұрын
14:30 what the hell is a "const char *void mesg" parameter? I assume the void was a typo
@mariansalam
@mariansalam 10 ай бұрын
That’s how you spot a c++ basher. Most can’t code their way out of a paper bag.
@jimmyhartzell4361
@jimmyhartzell4361 5 ай бұрын
Yes and it’s fixed
@sirhenrystalwart8303
@sirhenrystalwart8303 10 ай бұрын
A std::variant is the modern c++ answer to the rust enum. I think the variant is much easier to work with safely than the union.
@jimmyhartzell4361
@jimmyhartzell4361 5 ай бұрын
But terrible compared to Rust enum
@Bolpat
@Bolpat 8 ай бұрын
7:25 In C++, private class members are part of the public interface.
@Omnifarious0
@Omnifarious0 10 ай бұрын
unique_ptr is generally, not slower. And so, while it's a smart pointer, it's not slower. There is a slight caveat. When you call a function that takes a unique_ptr, the caller still ends up having to check if the called function took ownership of the argument. But that is a very tiny speed hit, and only shows up in specialized circumstances. Now, shared_ptr, OTOH, is slower than a regular pointer.
@CallousCoder
@CallousCoder 10 ай бұрын
A unique pointer isn’t but a shared pointer is a tiny tiny bit slower because you need to increment a reference count but reading an int from memory adding one and writing it back is 10 cycles. And that’s with a change miss. A clone in rust is a hell of a lot more when you copy more than one byte.
@Omnifarious0
@Omnifarious0 10 ай бұрын
@@CallousCoder - That's not how unique_ptr works. unique_ptr is a very thin wrapper around an ordinary pointer. You are accurately describing how shared_ptr works though.
@IllidanS4
@IllidanS4 10 ай бұрын
Isn't there an issue that you cannot store the pointer in a register since it has to have an address for the destructor to work?
@Omnifarious0
@Omnifarious0 10 ай бұрын
@@IllidanS4 - No. That isn't an issue, except possibly in some very strange circumstances. If you are using the pointer by value (not a reference or a pointer to it) then the compiler has enough information to completely optimize the destructor. But, it may be an issue if you are pointing to the pointer. But that'd be an issue with an ordinary pointer as well then.
@CallousCoder
@CallousCoder 10 ай бұрын
@@Omnifarious0 Yeah I just fixed my text 😂 and I saw your reply. I thought they were talking about shared pointers because that’s the only one you need to count references.
@Eek_The_Cat
@Eek_The_Cat 7 ай бұрын
How can one like pure c and scold cpp for something it inherited directly from c (like default non-constness) at the same time?
@jimmyhartzell4361
@jimmyhartzell4361 5 ай бұрын
I mean I don’t like that fact about C either, but at least C isn’t pretending to have good abstractions while actually making things harder. I can prefer C to C++ and dislike things about both of them. Preferring C doesn’t mean C is perfect…
@Eek_The_Cat
@Eek_The_Cat 5 ай бұрын
@@jimmyhartzell4361 you can use only abstractions that work well for you. At least smart pointers, function templates and stl algorithms are ok, why discard them altogether?
@____uncompetative
@____uncompetative 2 ай бұрын
The AGI for the mech "Smith" in the Jennifer Lopez Netflix movie _ATLAS_ is coded in C++
@Entropy67
@Entropy67 10 ай бұрын
As a C++ programmer this has made me interested in learning Rust... although the Rust foundation turned out to be weird. I guess there's a gap here for a better Rust.
@kevindelnoye9641
@kevindelnoye9641 10 ай бұрын
Circle, Cppfront and carbon all looking good. Swift has good interop with c++ now so could actually become successor if not only apple controlled most of it
@Buri8128
@Buri8128 10 ай бұрын
Exactly . Never tRrust the Foundation. The same people are still lingering there since the logotype debacle. What will they come up with next? something like Redhat, HashiCorp or Oracle ?
@isodoubIet
@isodoubIet 10 ай бұрын
@@kevindelnoye9641 Swift is a very strange language though, with some baffling decisions. I have my gripes with Rust but nobody can deny that at least it's a solid core that solves what it set out to solve. Swift is filled with things that make you go "buh?" like the lack of const for classes and that awful syntax for callbacks.
@thesergey
@thesergey 9 ай бұрын
Rust was made by learning from the mistakes of C++, Haskell, Java and others. If the Foundation is going to kill Rust, there will likely be a new language based on Rust's features. You can't waste time if you learn something new.
@poggarzz
@poggarzz 3 ай бұрын
zig & cpp and I am good. rust can sugma balls
@TremereTT
@TremereTT 6 ай бұрын
Delphi or FreePascal are actually single pass compilers! The development cycles are super fast... testdriven development ftw.
@multiHappyHacker
@multiHappyHacker 7 ай бұрын
C++ modules on MSVC are almost usable. Small projects could use modules without issue, most likely.
@Rizzan8
@Rizzan8 10 ай бұрын
Despite having built-in "out" keyword in C#, it is considered a bad practice to use it.
@user-fs3qr5yg7e
@user-fs3qr5yg7e 9 ай бұрын
and tuples are fairly ergonomic in c#
@aubinadjanohoun7486
@aubinadjanohoun7486 10 ай бұрын
That right there was a priceless take.
@kristofkiekens902
@kristofkiekens902 4 ай бұрын
Is there any reason, except for legacy code base anybody would use modern c++, c with classes, in anno 2024?
@arthurgeier2545
@arthurgeier2545 Ай бұрын
The downside of C++ : requires skill through malding
@Bolpat
@Bolpat 8 ай бұрын
19:00 That C++ does not break/remove stuff is patently false. Examples I can name without looking up: auto_ptr (deprecated in C++11, removed in C++17), _constexpr_ implies _const_ for member functions in C++11 (thankfully immediately removed in C++14). For the standard library, there is a list on cppreference “Symbol Index (removed)”.
@ruanpingshan
@ruanpingshan 8 ай бұрын
Holy crap, member functions can be constexpr? That would mean the object that calls them is also constexpr, then? And where would that object be declared? In what order would all that code be executed at compile time? It's mind-boggling.
@Bolpat
@Bolpat 8 ай бұрын
@@ruanpingshan A member function being constexpr means it can be called in a constexpr (member) function. The object can be mutable. There's loads of documentation online. It doesn't mean that much, honestly.
@ConernicusRex
@ConernicusRex 10 ай бұрын
in swift we can name the properties of tuples to avoid the .0 and .1 syntax they're all over uber's codebase in the rxswift stuff.
@rakpiotr
@rakpiotr 10 ай бұрын
Years ago I was about to proposed on cpp-moderated, how string-literals can be arguments of non-type templates. It was highly requested and would have enabled things like type-safe print (std::format) etc. in C++11. I've implemented prototype in gcc and clang (only gcc patch was public). It was really simple change - like 20 LOC, but 1000's in tests. Then I discovered that hell will brake lose due to mixed (wide/narrow) literals concatation. Never decided write this proposal for that reason. It would have been extension to C++11 variadic templates and author of those already agreed present it for commitee. Btw. similar defect was discovered with user-defined string-literals in about same time. It is really really hard to extend this language. But there is no way to push Rust to degree we sometimes have to do with C/C++. And when we do it, that code is messy and tricky for all other reasons than language. So, no. Rust or any other safety oriented language won't do the trick in most cases.
@isodoubIet
@isodoubIet 10 ай бұрын
Already exists as of C++20 (P0732R2)
@KX36
@KX36 10 ай бұрын
C++20 got modules which might appease those who don't like header files in 10-15 years if/when compilers ever support them.
@user-sl6gn1ss8p
@user-sl6gn1ss8p 10 ай бұрын
Someone in some other comment said the major compilers already have support for them, with clang missing a few things, gcc a couple edge cases and msvc being complete. No idea how right that is, but maybe it won't take that long
@az-kalaak6215
@az-kalaak6215 5 ай бұрын
​@@user-sl6gn1ss8pcmake has basic module support (still experimental I believe), meson is still trying to figure out how to bake them properly, and dunno about bazel. I would guess modules will be ready to be used as of cpp26 release
@remrevo3944
@remrevo3944 10 ай бұрын
19:14 No, even mem::uninitialized wasn't removed, only depreciated.
@teehee68p1
@teehee68p1 29 күн бұрын
like to see mention of the way in which you can use c++ like rust with unique ptr and union types. I get that they are in rust with syntax but so many people talk like they are new ideas never seen before lol
@MrHaggyy
@MrHaggyy 6 ай бұрын
I coded for agricultural, infrastructure and automotive industry. In this area C/C++ does an awesome job at tiny and custom ordered chips. But it's a completely different world of programming compared to anything related to web, cloud or desktop/laptop. Almost everything is fixed mapped in memory. You try to avoid stuff like an OS, garbage collection or networking at any cost as it only increases power consumption and system completely without providing any value to the user/customer. I agree to an extend on safety features and possible bugs. But we have a lot of awesome testing tools, we need full or close to full testing anyway. If you write a vehicle or flight controller there better be no bugs in it, or you go to jail pretty quick. In those kind of applications a "low feature" language is a great choice. But we do adapt Rust or Java for displays, and infotainment units. Anything thats more powerfull in compute and has no real command over the machine. It's also not uncommon to invest the effort and optimizing stuff in assembly. Even tho i tapp out of the projects at that point. I only put physics i to C/C++ code and make sure the physical machine acts like i thought it would.
@MI08SK
@MI08SK 10 ай бұрын
The problem with adding rust like enums to c++ would be that c++ would need to have pattern matching witch will probably come in c++ 26
@infastin3795
@infastin3795 10 ай бұрын
Pattern matching isn't a thing in c++23 and probably won't be in c++26 either or any future standard
@HelloThere-xs8ss
@HelloThere-xs8ss 10 ай бұрын
What's the difference in enums from C++ and rust? Is it just types?
@MI08SK
@MI08SK 10 ай бұрын
@@HelloThere-xs8ss c++ enums are similar to rusts but they can't hold a value
@HelloThere-xs8ss
@HelloThere-xs8ss 10 ай бұрын
@@MI08SK oh that's right
@Spongman
@Spongman 10 ай бұрын
what's wrong with std::visit and overloaded?
@khatdubell
@khatdubell 10 ай бұрын
The real fail here is that this guy claims to be an advanced c++ teacher but doesn't know that the language already provides a "non-nullable unique pointer" option as a first class part of the language.
@steffahn
@steffahn 10 ай бұрын
Yeah? What is it called?
@khatdubell
@khatdubell 10 ай бұрын
@@steffahn I'll give you a hint... &
@steffahn
@steffahn 10 ай бұрын
What's "unique" about references? Are you assuming a different meaning of "unique pointer" than the typical one?
@khatdubell
@khatdubell 10 ай бұрын
@@steffahn Granted, it not 100% parity of features, but its 99% of what people want with a unique pointer. The whole reason why the smart pointers exist is to provide automatic cleanup and to give ownership semantics to the language. If you take your arguments by reference and by value, you are signifying owership semantics. Whoever created the initial variable, that they are now passing by reference, still own it. You cannot take ownership from them. If you wish to pass ownership, you can pass by value and std::move to make your transfer of ownership explicit, even if its just symbolic. Any cleanup will happen at the appropriate time. I assume we don't need to discuss the non-nullness of references in c++ So what, in your opinion, is missing?
@steffahn
@steffahn 10 ай бұрын
@@khatdubell I have only watched the video once, but from what I remember the author's point was that things aren't properly expressed in function signatures (nor documented, since people don't document shit). I'll agree with your trade-off: Non-null pointers do exist in the form of references, and I think references in C++ are a great feature. But if you write a reference into your function signature, this signature isn't expressing that the function requires uniqueness - for example two parameters could be the same reference. Of course you can document such additional requirements, but then again, you can also document that a unique_ptr argument isn't supposed to be null.
@shaurz
@shaurz 10 ай бұрын
Even more unhinged is abbreviating buffer as 'buff' 😂
@TheEvilAdministrator
@TheEvilAdministrator 5 ай бұрын
Honestly, all you really have to do to clear out the vast majority of C++'s actual footguns is use a static analyzer and Valgrind. Add in some good testing - which you should be doing anyway - and you're golden. It's not hard. We have the tools.
@TimTeatro
@TimTeatro 10 ай бұрын
C++s sum types (std::variant, std::optional) are practical, but they aren't real sum types, and it's very difficult to make them so. In Rust, is there an empty type? That is, one that cannot be constructed? The effect should be that for the empty type 𝘌, if we have 𝘱 of type 𝘌 + 𝘈, for any other type 𝘈, then 𝘱 is guaranteed to hold 𝘈? (Yes, I know many programmers would ask “what's the point of that?” It's a math thing, and it does turn out to be useful for reasoning. It's like having the number zero in the integers.)
@martiny.9366
@martiny.9366 10 ай бұрын
Not exactly the same thing, but in Rust a function can return "!", which actually means it never returns a value. Think about an exit() function that aborts the program for example.
@nikthechampiongr
@nikthechampiongr 10 ай бұрын
​@@martiny.9366You can also just have an enum without any variants which makes it impossible to construct.
@MI08SK
@MI08SK 10 ай бұрын
For sum types being practical they need pattern matching
@Spongman
@Spongman 10 ай бұрын
@@MI08SKyou can do pattern matching on std::variant with std::visit.
@TimTeatro
@TimTeatro 10 ай бұрын
@@MI08SK This is very true, and something that several people in the ISO C++ committee have been working on for years. It is considered a priority for the next standard release (C++26, I suppose). But I know, at least, Michael Park has been working on it since at least 2016, and had something working 2017, so ti's taken a (rediculously) long time.
@astralfoxy1787
@astralfoxy1787 10 ай бұрын
15:19 - WTF is (const char *void mesg, ...) Is it pointer to void or char. Choose one. In C++ you cant use nullptr in (char *) function, obviosly.
@jimmyhartzell4361
@jimmyhartzell4361 5 ай бұрын
Typo
@SystemSigma_
@SystemSigma_ 10 ай бұрын
The more I use C++, the more I love C. I just don't want to worry anymore of some hidden behavior of my code: if I write C code, I am sure of what will happen and if a copy will be made. C++ hides stuff that I want in plain sight to see if needed. Headers don't bother me much, I just use them as interface to the outside world. Disclaimer: I work in robotics embedded systems.
@HairyPixels
@HairyPixels 10 ай бұрын
but if it's your own code base you know where the hidden behavior is so why is that so bad? Not sure which hidden behavior you're referring to though...
@gagagero
@gagagero 10 ай бұрын
@@HairyPixels Implicit calls to the default copy and move assignments and constructors, which you might forget even exist.
@jordixboy
@jordixboy 10 ай бұрын
the simplicity of C is just awesome (as a self taught engineer)
@gagagero
@gagagero 10 ай бұрын
@@jordixboy C++ isn't that complex either, but teachers and books tend to overcomplicate it by throwing an entire lexicon's worth of OOP theory at you.
@SystemSigma_
@SystemSigma_ 10 ай бұрын
@@HairyPixels I would say that if you are the main contributor and know 90% of the codebase, you would be fine with every programming language. However, in a company usually you are not alone. When working with many engineers, it is very hard to force a coding style upon everyone, and since C++ allows very different programming styles, this leads to a mess very quickly. Freedom of choice is a good thing, but too much freedom leads to chaos. Just my take on personal experience.
@MultiProGGer
@MultiProGGer 10 ай бұрын
2:52 Even gamedevs say that C++ sucks. We use it despite that.
@DiThi
@DiThi 10 ай бұрын
Indeed. For game development, the only language I can replace C++ with, is Nim. And not currently, only after they implement cyclic imports (which will probably happen this year or early next year). I can't wait for that, so I did a little hack to achieve it.
@svenvandevelde1
@svenvandevelde1 6 ай бұрын
Story from a senior. We used to learn PASCAL. A STRONG TYPED object oriented language. Those who are excited about RUST should first learn OBJECT PASCAL. This language is like 35 years old and does TYPE CHECKING, BOUNDS CHECKING etc, etc. What is this silly hype about RUST. ... The C language was chosen and preferred because PASCAL was totally inflexible. C became the standard and later C++.
@svenvandevelde1
@svenvandevelde1 6 ай бұрын
One additional note. I learned C++ in 1994 ...
@leetaeryeo5269
@leetaeryeo5269 9 ай бұрын
You mention C++ 2 and C++ 23, but when will we get C+++
@M4Dbrat
@M4Dbrat 9 ай бұрын
C += ++C + C++
@gnagyusa
@gnagyusa 2 ай бұрын
Good point about "const".
@tommyponce2511
@tommyponce2511 10 ай бұрын
You don't have to use the .0, .1 syntax on tuples, you can just extract the values to independent variables by: let (var1, var2) = the_tuppled_data; It's an awesome feature to use, and you can even avoid memory allocation for one of the two variables if not needed: let (_, var2) = the_tuppled_data;
@tommyponce2511
@tommyponce2511 10 ай бұрын
@@anon_y_mousse that was clearly an example. Your arrogance is not needed nor appreciated
@tommyponce2511
@tommyponce2511 10 ай бұрын
@@anon_y_mousse nah, examples are examples. If you want a tutorial go look it up. And I see you’re looking to attack, so Imma cut the conversation right now. Cheers!
@skilz8098
@skilz8098 8 ай бұрын
Come on guys and gals... this isn't Stackoverflow!!!
@tommyponce2511
@tommyponce2511 8 ай бұрын
@@skilz8098 I know lmao I was just trying to provide an insight as a small example, I didn’t know I had to provide a full application to demonstrate it lol
@skilz8098
@skilz8098 8 ай бұрын
@@tommyponce2511 Lol... yeah, I'm not known to write or express my ideas in under 5 words... Now, when I'm just joking or messin around... I do sometimes come up with some fairly good one liners on the spot... I can reiterate that with a bit of historic self recursion... GOTO 10.
@LyubomyrSemkiv
@LyubomyrSemkiv 2 ай бұрын
I believe all objects should be copyable by default. Love this feature.
@farrongoth6712
@farrongoth6712 9 ай бұрын
I might be wrong 11:44 I feel like he's just doing something fundamentally wrong he, he complaining the structure/class isn't abstracted to a movable reference for him that that has to be done explicitly in C++, sure it would be nice to have some syntactic sugar for this but his solution seemed to be convoluted. And overriding the default methods unnecessarily, he should have been using a unique_ptr and moving that around to be fair the move still isn't implicit but you would have the std::move feature he wants without having to override default methods and have the other issue he had.
@nexovec
@nexovec 10 ай бұрын
If you're not returning your strings as values, I'm done talking to you.
@ekremvkilic
@ekremvkilic Ай бұрын
Want to return more than 1 type? Use structs. Everybody says tuples, but I have seen them being used only in the test code. Besides that while agreeing that C++ is not beginner friendly, most of the things here are minor stuff in my opinion.
@FalcoGer
@FalcoGer 10 ай бұрын
@1:10 std::sum is a thing, as is std::accumulate. and std::transform_reduce. And std::reduce. And std::partial_sum. And std::inclusive_scan and std::exclusive_scan. I mean how many different ways to sum a collection do you need? Why does this guy complain about c++ without knowing what the STL can do for you? std::for_each isn't everything. Although that, too, can be used to sum a collection. @1:27 what is first class support supposed to mean? std::tuple is a thing. The heck is he talking about? It even has variadic template arguments for a tuple of arbitrary length. And if you want something else, try std::vector if you want to be disgusting. Or make your own class. It's not hard. There is even structured binding to unpack them nicely. ```c++ float x{}; char y{}; int z{}; std::tuple tpl(x, y, z); const auto [a, b, c] = tpl; ``` @2:00 oh smart pointers are slow? Have you measured that? std::unique_ptr is extremely simple and well optimized. It barely costs more than new and delete and for most systems the assembly instructions are even equivalent. There is literally no performance penalty for them. Since unique pointers are sufficient 90% of the time, they're just plain better to be using. As for shared pointers, yes they are slower. But who really cares about a few nanoseconds? Do you really need to optimize THAT part of your program? I'm sure there are better ways to spend your time. Go to godbolt right now and plug this in with -O1 or higher. It literally produces the same code. ```c++ #include extern void f(int* p_i); auto main() -> int { int* p_i = new int(31415); f(p_i); delete p_i; std::unique_ptr up_i = std::make_unique(31415); f(up_i.get()); return 0; } ``` @3:00 C++ is a great language. It's low down and hands on if you want or need it that way, and as high level as you want with many great libraries. The problem lies with how people are taught c++. You don't need to know arrays, pointer arithmetic or bit shifting. Don't teach people cstrings in char arrays and printf. They don't need it, and it makes them worse programmers at worst and at best it discourages them and makes them think c++ is hard and they can't understand it. What they need to know is STL, data structures and the modern types like string and vector. Teach them how to write useful classes, not variadic functions. Teach them how to structure code with classes, structs, namespaces, enum classes, not how to write c programs that compile in a c++ compiler where you have to shove everything into functions in a global namespace and then have to come up with weird names. In short, stop teaching C, that's just baggage that you will never need to use. There almost never is a need for using new and delete. Raw pointers are fine as function arguments. Unique pointers get you 99% of the way where you need to go. shared pointers 0.9% and the rest you have to use weak pointers for. Almost any data manipulation, query or restructuring that you could ever need is covered by the STL. And when modules release with c++38 they will have fixed those horrible compile times, too. What tripped me up is the weird build system. But once I wrapped my head around compilation units and the fact that templated functions and class members aren't actually real functions and need to go into header files, I was good. C++ has a reputation for being difficult, but it really is just a matter of perspective. I know dot dot dot is where the fun begins, but I never had to deal with that. That library writer stuff, and I don't write libraries, and when I do they are simple enough to not require variadic templates. @8:55 I agree. const should be the default, but it isn't. clangd does mark pretty much all the places where you can make things const though. It was a bad design decision made ages ago. but they can't just change it. I've learned to live with it. And constantly thinking about whether a thing should be const or not also helps in a way. That said, a lot of languages don't have const as default. python doesn't even have a const to begin with. or private members for that matter. c# has readonly and const, neither is default. javascript const is non default, but javascript sucks anyway. java doesn't have const as default. actually there are very few languages that I can name that have const as default. probably because it is annoying. you make a variable to mutate it. it's in the name. a constant is just a name for a value. You can make `this` const by declaring the member function `const`. You think about that when you design your class. Does this function need to change any class members? No, declare it const. It's not about the this pointer, it's about the function. @13:00 I agree. copying can be slow. Just consider all your constructors for all your classes and you'll be fine. A class that is correct with all of them = default is just the golden medal. If you don't want your class to be copyable, then that's fine. What's the problem? Alternatively make the copy constructors deprecated for a warning to the user if it is probably a bug, but not necessarily a bug and let them pragma out the warning and explain their actions if they need to copy. @13:30 bad. don't use references to modify values. references should always be const. If you want to modify values, pass pointers, or use a return type. make tuple is hardly long winded, especially with template argument deduction. using references obscures the fact that you are changing the data. The best way would be to either name your function in a way that strongly suggests that you are changing a parameter, or return a data structure of some kind to hold the return values. @15:00 and there is your problem. You are writing c code. what the hell are you doing needing to pass sizes and arrays around? the message should just be a vector or similar. let the vector handle the hard stuff like allocation. buff should contain it's own size and be dynamically allocated as required. @15:30 use gsl::not_null
@jimmyhartzell4361
@jimmyhartzell4361 5 ай бұрын
Sum types means something like std::variant, but good, with pattern matching. It has nothing to do with std::sum; it’s a term from set theory. First class means in the language rather than in the library. It’s my gripe about what I find annoying, and std::tuple and std::variant aren’t up to my standards.
@NoodleBerry
@NoodleBerry 5 ай бұрын
Lmao C++ is my favourite language, and the favourite of at least a few of my classmates and one of my coworkers. I think I should motivate this, but I'll only speak for myself. I guess it's a story. I'm second year compeng, aka, an idiot. My first year my introduction to programming 1 and 2 were in C and Java respectively. I. LOVED. C. Java was ok, but I kept getting frustrated by things I wasn't allowed to do, it's wordy, and I don't love everything being a class. Then I took a class in C++. This was C done nice. Nice things: usable containers, templates, something damn near memory safety with shared and unique pointers, and just freedom classes where they were called for, but not in general required. It's nice, it works, and if I'm confused I can just write C code instead
@genghisdingus
@genghisdingus 7 ай бұрын
C += 2 When?
@realtimberstalker
@realtimberstalker 10 ай бұрын
In c# you can actually name the values of a tuple.
@origamibulldoser1618
@origamibulldoser1618 7 ай бұрын
You don't define the same thing twice. You declare it however many times you want and define it once.
@FaultyTwo
@FaultyTwo 10 ай бұрын
To all beginners. C++ learning curve is absolutely brutal. It's not even linear, it's a fucking 2^n curve. Even I took C before C++, I still open the damn docs back and forth.
@petersturm7628
@petersturm7628 9 ай бұрын
Obligatory Copy -> thats why i use Pointers only (and its bad)
@cyrusol
@cyrusol 10 ай бұрын
If you do bad things in C++ it compiles, it runs, it segfaults. If you do bad things in Rust it doesn't compile. You cannot make that skill issue argument equally, no. A wrong program not compiling is better for bad programmers (and good ones alike) than it failing during runtime. To sum it up: Rust is better.
@taragnor
@taragnor 10 ай бұрын
While I do like Rust, there is an argument to be said for getting code to a working version faster. The thing is that C/C++ does let you get working code faster. So long as you do it right of course, you don't have to bother dealing with annotating lifetimes and all that. The danger of course is that if you do screw that stuff up then you're going to have a bunch of very annoying debugging problems.
@vitalyl1327
@vitalyl1327 10 ай бұрын
It depends. There's nothing for Rust comparable in quality to C++ static code analysis tools. Rust gives you a better baseline safety for free, but for really high stakes safety it's not ready.
@CallousCoder
@CallousCoder 10 ай бұрын
C++ can be very nice and easy if you allow yourself not to be tempted to stray away from the basics. Then you can basically write it like Java or JavaScript. But you can easily be tempted to stray from the path and dive down in pointers and lowlevel memory trickery and then it gets tricky. It’s the same with assembly it can be very easy and friendly or it can become very convoluted and complex very soon. You don’t need to use the heavily syntax when the basics just work. Only when you optimize for speed you will have to.
@smallfox8623
@smallfox8623 10 ай бұрын
Tuples in Rust have annoying syntax? Bruh, just destructure the tuple.
@Dexterdevloper
@Dexterdevloper 5 ай бұрын
5 minutes of Jonathan blow talking about how bad is C++ is more then enough.
@dickheadrecs
@dickheadrecs 10 ай бұрын
I’m pretty sick of “the downsides of C++” i’m much more interested in “the best of C++ tooling, static analysis, modern patterns (ignoring anything beyond C++17)”
@simonfarre4907
@simonfarre4907 10 ай бұрын
C++20 and 23 is pretty damn nice. There's cruft you can ignore entirely. But std::format? views? Many more things. What I like about the newer C++-versions is that you get to choose entirely if you want to skip whatever you think is nonsense.
@gagagero
@gagagero 10 ай бұрын
Yeah, these "old language is old" articles are getting pretty tiring.
@marcs9451
@marcs9451 10 ай бұрын
unfortunately C++ is a dead end, you can make it less worse by carefully ignoring most features. new languages are the way to go
@askeladden450
@askeladden450 10 ай бұрын
C++ before 17 is garbage and should be banned from use.
@dickheadrecs
@dickheadrecs 10 ай бұрын
@@seibx9290 it’s much more fun to talk about flying cars….. ground based vehicles are a “dead end” though
@jaredsutton
@jaredsutton 10 ай бұрын
`const` pointers not constants. So succinct
@AK-vx4dy
@AK-vx4dy 10 ай бұрын
No smart pointers give more safety and protectd from 95% most stupid errors but not give 95% of borrow checker. I saw last two presentations one on c++ and one of zig when they tyring to circumvent problems wich borrow checker solves on the spot
@Robertoclos-ib7cc
@Robertoclos-ib7cc 10 ай бұрын
In the name of Allah, I invite you to worship Allah alone: I bear witness that there is no god but Allah, and I bear witness that Muhammad is the Messenger of Allah. These words make you a servant of Allah. ............ .........
@AK-vx4dy
@AK-vx4dy 10 ай бұрын
@@Robertoclos-ib7cc Is this irony of Rust cult ? If so, very funny 😂 I'm not in a cult, if i'm beliver ther rather solitary 😄
@Calypso694
@Calypso694 10 ай бұрын
the Header File thing got me lol. I still dont get it. Why not just create whatever your header is IN A NORMAL FUNCTION then implement it in Main or something? like why? oh wait ABSTRACTION. Fucking Bjorn just wanted loads of outdated abstraction.
@jongeduard
@jongeduard 9 ай бұрын
If I may share my thoughts, with all that high complexity of classes with the need to implement all those copy constructors and things and how easy it is to forget them, I now believe with C++ it is far more easy to make mistakes and accidentally introduce undefined behavior and crashes than it is with the simple C language, even though C does not have smart pointers or any RAII solution. C has always stayed a simple language, and that aspect wins out. In that way I also believe that Rust is especially a replacement for C++ even more than for C, even though people mainly compare it to C and talk about that a lot.
@khealer
@khealer 10 ай бұрын
There's "enum class" in c++ now.
@jimmyhartzell4361
@jimmyhartzell4361 5 ай бұрын
Not what I’m talking about. Rust enums can have embedded values associated with the variants.
@nevokrien95
@nevokrien95 10 ай бұрын
Rust just doesn't have cuda... so like as much as I want use rust it's basicly impossible for my use case.
Why i think C++ is better than rust
32:48
ThePrimeTime
Рет қаралды 286 М.
CppCon 2014: Mike Acton "Data-Oriented Design and C++"
1:27:46
КАК ДУМАЕТЕ КТО ВЫЙГРАЕТ😂
00:29
МЯТНАЯ ФАНТА
Рет қаралды 10 МЛН
Finger Heart - Fancy Refill (Inside Out Animation)
00:30
FASH
Рет қаралды 16 МЛН
БАБУШКИН КОМПОТ В СОЛО
00:23
⚡️КАН АНДРЕЙ⚡️
Рет қаралды 15 МЛН
Cs Biggest Mistake | Prime Reacts
10:55
ThePrimeTime
Рет қаралды 66 М.
C++ and Rust At The Same Time | Prime Reacts
15:43
ThePrimeTime
Рет қаралды 55 М.
FIRED For Using React?? | Prime Reacts
33:16
ThePrimeTime
Рет қаралды 397 М.
How much faster has Mojo's dictionary gotten?
7:40
EKB PhD
Рет қаралды 2,4 М.
The Perfect Programming Language
23:50
ThePrimeTime
Рет қаралды 364 М.
The purest coding style, where bugs are near impossible
10:25
Coderized
Рет қаралды 921 М.
Programming Languages I used at Google (C++ rant)
6:14
NeetCodeIO
Рет қаралды 62 М.
Why I Quit Netflix
7:11
ThePrimeagen
Рет қаралды 493 М.
Это - iPhone 16 и вот что надо знать...
17:20
Overtake lab
Рет қаралды 132 М.
Ноутбук за 20\40\60 тысяч рублей
42:36
Ремонтяш
Рет қаралды 363 М.
Как правильно выключать звук на телефоне?
0:17
Люди.Идеи, общественная организация
Рет қаралды 1,9 МЛН
ВАЖНО! Не проверяйте на своем iPhone после установки на экран!
0:19
ГЛАЗУРЬ СТЕКЛО для iPhone и аксессуары OTU
Рет қаралды 6 МЛН
Как бесплатно замутить iphone 15 pro max
0:59
ЖЕЛЕЗНЫЙ КОРОЛЬ
Рет қаралды 7 МЛН
Это Xiaomi Su7 Max 🤯 #xiaomi #su7max
1:01
Tynalieff Shorts
Рет қаралды 2 МЛН
S24 Ultra and IPhone 14 Pro Max telephoto shooting comparison #shorts
0:15
Photographer Army
Рет қаралды 10 МЛН