Skip to content

Instantly share code, notes, and snippets.

@GedMullen
Created February 4, 2017 20:12
Show Gist options
  • Save GedMullen/d9030497dc4039851ffa19d8a27f8ff2 to your computer and use it in GitHub Desktop.
Save GedMullen/d9030497dc4039851ffa19d8a27f8ff2 to your computer and use it in GitHub Desktop.
Coffee coffee = new Coffee();
if(coffee.isEmpty()){ //use lower camel case and accessor method to access attribute
coffee.refill(); //lower camel case for method name
}else{ //else is more often written with the braces next to it
coffee.drink(); //lower camel case for the method
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment