Created
April 3, 2020 10:46
-
-
Save Raouf25/5af5292cfc93ddda3426623b2266d2bb 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 two-parameter constructor reference. | |
BiFunction<String, String, City> twoParameterConstructor = City::new; | |
City dc = twoParameterConstructor.apply("Washington, D.C.", "DC"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment