Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 246 Bytes

classes.md

File metadata and controls

12 lines (8 loc) · 246 Bytes

Classes

Up until now all the data types you have used - int, String, etc. - came with Java. This works for awhile, but eventually you will need to define your own types.

The way to do this is with a "class."

class Person {

}