Created
April 3, 2020 10:06
-
-
Save Raouf25/44a3ab497dc92a9449e577cc310ec009 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 a constructor with parameters to create a City | |
City sf = new City("San Francisco", "SF"); | |
// Use a default constructor with no parameters to create a City | |
City la = new City(); | |
// Set the members using setters | |
la.setName("Los Angeles"); | |
la.setCode("LA"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment