Skip to content

Instantly share code, notes, and snippets.

@jredh
Last active February 10, 2016 00:48
Show Gist options
  • Save jredh/1aa7f10813293d910261 to your computer and use it in GitHub Desktop.
Save jredh/1aa7f10813293d910261 to your computer and use it in GitHub Desktop.
void Setters
// ...
House house = new House();
house.setBedrooms( 2 );
house.setName( "Home" );
house.setBathrooms( 3 );
house.setSquareFeet( 1900 );
house.setWindows( 4 );
float value = house.appraise();
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment