Skip to content

Instantly share code, notes, and snippets.

@jraczak
Last active August 29, 2015 14:26
Show Gist options
  • Save jraczak/7b1569b05fd93a1bf726 to your computer and use it in GitHub Desktop.
Save jraczak/7b1569b05fd93a1bf726 to your computer and use it in GitHub Desktop.
Implementing classes & methods - implementing a method
public class Car
{
private double milesDriven;
private double gasInTank;
public void drive(double distance)
{
milesDriven = milesDriven + distance;
}
public void addGas(double amount)
{
gasInTank = gasInTank + amount;
}
// Additional methods fill in below
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment