this post was submitted on 31 May 2024
295 points (98.4% liked)

Linux

47369 readers
887 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
you are viewing a single comment's thread
view the rest of the comments
[–] ProgrammingSocks@pawb.social 2 points 3 months ago* (last edited 3 months ago) (1 children)

Rust simply doesn't allow you to have references to data that goes out of scope (unless previously mentioned hoops are jumped through such as an explicitly declared unsafe block). It's checked at compile time. You will never be able to compile the program.

Rust isn't C. Rust isn't C++. The memory-safe-ness of it is also not magic, it's a series of checks in the compiler.

[–] DacoTaco@lemmy.world 1 points 3 months ago (1 children)

That sounds odd. That also means that a mapper, command, service,... can never return a class object or entity. Most of the programming world is based on oop o.O
Keep in mind im not talking about the usage of pointers, but reference typed variables.

[–] ProgrammingSocks@pawb.social 1 points 3 months ago* (last edited 3 months ago)

Oh sure, I'm still learning so I thought you meant references as in pointers like in C++. But also, Rust isn't a strictly object oriented language either. It shares a lot of similar features, but they aren't all the typical way you'd do things in an OOP language. You should check out the chapter of the Rust book for ownership.