Skip to content

Instantly share code, notes, and snippets.

@skooltch84
Created October 9, 2016 20:31
Show Gist options
  • Save skooltch84/45786fcc0122e2ce6bed5fd60df6589f to your computer and use it in GitHub Desktop.
Save skooltch84/45786fcc0122e2ce6bed5fd60df6589f to your computer and use it in GitHub Desktop.
class Car {
}
//Creating an instance of the car class
// also called a Car instance or creating a car object
//Therefore an object is an instance of a class
//An instance is basically an object.
Car car = new Car();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment