Skip to content

Instantly share code, notes, and snippets.

@Raouf25
Created April 3, 2020 10:06
Show Gist options
  • Save Raouf25/44a3ab497dc92a9449e577cc310ec009 to your computer and use it in GitHub Desktop.
Save Raouf25/44a3ab497dc92a9449e577cc310ec009 to your computer and use it in GitHub Desktop.
// 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