this post was submitted on 21 Oct 2024
187 points (99.0% liked)

Programming

17252 readers
296 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 30 points 2 days ago (1 children)

I'm a bit skeptical that a borrow checker in C++ can be as powerful as in rust, since C++ doesn't have lifetime annotations. Without lifetime annotations, you have to do a whole program analysis to get the equivalent checks which isn't even possible if you're e.g. loading dynamic libraries, and prohibitively slow otherwise. Without that you can only really do local analysis which is of course good but not that powerful.

Lifetime annotations in the type system is the right call, since it allows library authors to impose invariants related to ownership on their consumers. I doubt C++ will add it to their typesystem though.

[–] [email protected] 28 points 2 days ago (2 children)

Read the proposal: Lifetimes annotations, the rust standard library (incl. basic types like Vec, ARc, ...), first class tuples, pattern matching, destructive moves, unsafe, it is all in there.

The proposal is really to bolt on Rust to the side of C++, with all the compatibility problems that brings by necessity.

[–] [email protected] 10 points 2 days ago (3 children)

Gonna need to start calling it C++++ at this point. So much extra shit in the standard library

[–] [email protected] 1 points 1 day ago

Well, its a brand new standard library. A fresh start.

[–] [email protected] 12 points 2 days ago (2 children)

C# be like, am i a joke to you?

[–] [email protected] 14 points 2 days ago

I'm not sure, C# wants to hear the response to this...

[–] [email protected] 9 points 2 days ago
[–] [email protected] 6 points 2 days ago (1 children)

Honestly, i prefer that over minimal standard libraries where you need dotzens of changing depencies for the simplest stuff.

[–] [email protected] 6 points 2 days ago (1 children)

Nah standard libraries are great but C++ has a lot of... cruft. Maybe don't plonk a lot of Rust in there despite all the positives

[–] [email protected] 2 points 2 days ago

Sure, not saying C++ isn't cluttered.

[–] [email protected] 7 points 2 days ago (1 children)

Ah ok just read the article and not the proposal. I'm surprised that they went that far but as I wrote I think that lifetime annotations are a good idea, hope the C++ people find a way to add them to the language that actually works well, which sounds like an incredibly difficult task.

[–] [email protected] 1 points 1 day ago

"They" did not go anywhere yet. This is a proposal, nothing more. It will take serious discussions over years to get this into C++.

Prominent figures already said they prefer safety profiles as a less intrusive and more C++ approach at conferences It will be fun to watch this and the other safety proposals going forward.