284
submitted 11 months ago by JoeKlemmer@lemmy.myserv.one to c/linux@lemmy.ml

From BeepingComputer.

you are viewing a single comment's thread
view the rest of the comments
[-] lloram239@feddit.de 11 points 11 months ago* (last edited 11 months ago)

C has no memory protection. If you access to the 10th element of a 5 element array, you get to access whatever is in memory there, even if it has nothing to do with that array. Furthermore this doesn't just allow access to data you shouldn't be able to access, but also the execution of arbitrary code, as memory doesn't make a (big) difference between data and code.

C++ provides a few classes to make it easier to avoid those issues, but still allows all of them.

Ruby/Python/Java/... provide memory safety and will throw an exception, but they manually check it at runtime, which makes them slow.

Rust on the other side tries to proof as much as it can at compile time. This makes it fast, but also requires some relearning, as it doesn't allow pointers without clearly defined ownership (e.g. the classic case of keeping a pointer to the parent element in a tree structure isn't allowed in Rust).

Adding the safeties of Rust into C would be impossible, as C allows far to much freedom to reliably figure out if a given piece of code is safe (halting problem and all that). Rust purposefully throws that freedom away to make safe code possible.

this post was submitted on 04 Oct 2023
284 points (99.0% liked)

Linux

47366 readers
914 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS