Live data from Hacker News

Viewing profile — weksf54

weksf54

HN member
Joined
Tue, Apr 29, 2025, 3:14 PM UTC
HN karma
9
Public activity
4 items

About weksf54

No profile information was provided.

Recent public activity

  1. comment
  2. story
  3. 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…

  4. 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…