7 ms·
Rust is not (much?) further from the hardware than C++
by tupshin 2y ago
Rust is not (much?) further from the hardware than C++
- School-Cotton 2y agoC++ is further than rust in my opinion. Vtables that support inheritance, as well as stack unwinding for exceptions, are pretty complicated and totally implicit in C++. Okay rust also technically has unwinding for panics to be fair but it’s rather unusual in practice for programmers to use panics to mean anything other than “crash the program now”.
- pjmlp 2y agoLike trait implementations, and trait objects.
- School-Cotton 2y agoThat’s fair, trait objects do cause a table to be generated, but they don’t support inheritance and subjectively I think they’re used less often than the OOP features of c++ that lead to vtable-based dynamic dispatch. (Traits are extremely common in rust, but dyn trait objects somewhat less so)
- pjmlp 2y agoDoesn't matter how common, the feature is there, and although we aren't yet that far, might even differ across implementations. Also trait inheritance exists, enforced via trait bounds, what Rust doesn't support is class inheritance.
- School-Cotton 2y ago> Doesn't matter how common Yes it does, if your concern is “how often do I encounter code where I can’t predict or control what it actually does on the hardware”.
- pjmlp 2y agoAny time there is a compiler implementation that has to provide support for translating such features into machine code.