Viewing profile — weksf54
weksf54
HN member- Joined
- Tue, Apr 29, 2025, 3:14 PM UTC
- HN karma
- 9
- Public activity
- 4 items
- HN profile
- View on Hacker News ↗
About weksf54
No profile information was provided.
Recent public activity
- comment
- story
-
comment
Comment #43842809
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 inn…
-
comment
Comment #43833918
You could use Java records to make things more concise: record Truck(int loadCapacity) implements Vehicle {} record Car(int numberOfSeats, String brandName) implements Vehicle {} s…