this post was submitted on 11 Apr 2024
13 points (93.3% liked)

Programming Languages

1157 readers
9 users here now

Hello!

This is the current Lemmy equivalent of https://www.reddit.com/r/ProgrammingLanguages/.

The content and rules are the same here as they are over there. Taken directly from the /r/ProgrammingLanguages overview:

This community is dedicated to the theory, design and implementation of programming languages.

Be nice to each other. Flame wars and rants are not welcomed. Please also put some effort into your post.

This isn't the right place to ask questions such as "What language should I use for X", "what language should I learn", and "what's your favorite language". Such questions should be posted in /c/learn_programming or /c/programming.

This is the right place for posts like the following:

See /r/ProgrammingLanguages for specific examples

Related online communities

founded 1 year ago
MODERATORS
 

This essay says that inheritance is harmful and if possible you should "ban inheritance completely". You see these arguments a lot, as well as things like "prefer composition to inheritance". A lot of these arguments argue that in practice inheritance has problems. But they don't preclude inheritance working in another context, maybe with a better language syntax. And it doesn't explain why inheritance became so popular in the first place. I want to explore what's fundamentally challenging about inheritance and why we all use it anyway.

you are viewing a single comment's thread
view the rest of the comments
[–] NostraDavid@programming.dev 8 points 5 months ago (1 children)

just like followers of religion

We say that shit, because we've touched code that's deeply inherited, and it was a god-damn pain to work with, because changing a single line can mean you'll need to update a fuckton more, which breaks tests all god-damn over, which means you may have to refactor 50% of the application in one go.

Anyway, everything has its uses (even goto). It's just there are typically better alternatives.

“sum types” and “algebraic data types” are horrible names.

Agreed, but they exist due to historic reasons, and now we're stuck with them. Not much we can do there ¯\_(ツ)_/¯

Pretty much the equivalent of “imaginary numbers”.

Terrible name that just means "vertical number line" (with an added operation where you rotate the vector, instead of add or scale), or "y-axis for the number line". It's funny because "Real" numbers are about as real as "Imaginary" numbers. Both are virtual (not physically existing).

str | int is a sum type

It just means that the variable can either be a str or an int. You've seen | used as "bitwise or", right? Think in that direction.

PS: Stay away from Monads - they'll give you an aneurysm. 😂

[–] Kacarott@feddit.de 1 points 5 months ago

In some langs like Python, | is also the "union" operator, to join sets and such, which I think is more directly related to types, since types are sets of possible values.