Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
weksf54
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
NIH to update policies and practices guiding subawards
(nih.gov)
5 points
by
weksf54
1y ago
|
1 comments
2.
▲
by
weksf54
1y ago
Ah! Thanks, I didn't know that. I should have RTFMD better - https://docs.oracle.com/en/java/javase/21/language/sealed-cl... Turns out you can do this and not have the annoying inner class e.g.
3.
▲
by
weksf54
1y ago
You could use Java records to make things more concise: record Truck(int loadCapacity) implements Vehicle {} record Car(int numberOfSeats, String brandName) implements Vehicle {} sealed interface Vehicle permits Car, Truck {}