Skip to content

Instantly share code, notes, and snippets.

@Raouf25
Last active April 3, 2020 10:44
Show Gist options
  • Save Raouf25/7bf46cb947922b5be3769e0dc3536349 to your computer and use it in GitHub Desktop.
Save Raouf25/7bf46cb947922b5be3769e0dc3536349 to your computer and use it in GitHub Desktop.
// Use the City's constructor method reference to create
// a default constructor reference.
Supplier<City> defaultConstructor = City::new;
City sd = defaultConstructor.get();
sd.setName("San Diego");
sd.setCode("SD");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment