Is there any noticeable difference between java17'...
# random
s
Is there any noticeable difference between java17's sealed class and kotlin sealed class. ?
p
in java, you have to explicitly specify a lot more information - at the 'sealed' level, you have to indicate which classes you permit, and then on each implementor you have to decide whether it's
final
or allows its own subclassing