Last active
April 3, 2020 10:44
-
-
Save Raouf25/7bf46cb947922b5be3769e0dc3536349 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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