Skip to content

Instantly share code, notes, and snippets.

@agiri23
Last active December 16, 2021 21:26
Show Gist options
  • Save agiri23/bc62a2af50fc11feca83077efc249de8 to your computer and use it in GitHub Desktop.
Save agiri23/bc62a2af50fc11feca83077efc249de8 to your computer and use it in GitHub Desktop.
pattern matching instanceOf
private static void patternMatchingInstanceOf() {
Object o = new CountryData("Netherlands","Amsterdam","Europe");
if (o instanceof CountryData countryData) {
System.out.println("This capital of Netherlands is " + countryData.capital());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment