Skip to content

Instantly share code, notes, and snippets.

@flyingsilverfin
Last active November 28, 2022 16:11
Show Gist options
  • Save flyingsilverfin/ece62f75967c39cd3827d1238619186d to your computer and use it in GitHub Desktop.
Save flyingsilverfin/ece62f75967c39cd3827d1238619186d to your computer and use it in GitHub Desktop.
Strong Typing in TypeDB blog: Java subtyping
// it's redundant but not wrong in Java to declare 'extends Object' explictly
public class Page extends Object {
public Page() {
// constructor
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment