Skip to content

Instantly share code, notes, and snippets.

@jraczak
Created July 27, 2015 23:40
Show Gist options
  • Save jraczak/461ea5839929a602afce to your computer and use it in GitHub Desktop.
Save jraczak/461ea5839929a602afce to your computer and use it in GitHub Desktop.
Implementing classes & methods - Constructors
public Car(double mpg)
{
milesDriven = 0; // initialize value
gasInTank = 0; // initialize value
milesPerGallon = mpg; // initialize value
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment