this post was submitted on 17 Jun 2024
19 points (85.2% liked)
Programming
17344 readers
375 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 !webdev@programming.dev
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Wow, I always thought Java had been UTF-8 by default since v6 or something.
Python got it too!
Is this the easy replacement of "beans"?
Huh? Haven't classes had
final
forever?Anti Commercial-AI license
final
prevents a class from being extended completely, while a sealed class is only extensible by a select few subclasses, which are explicitly defined in apermits
clause in the sealed superclassPermits is only required when the compiler can't see the extending classes. IE inner classes can extend without needing to be written out in a
permits
clause. This isn't really that useful but I've taken advantage of it more than once so who knows