Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 296 Bytes

File metadata and controls

15 lines (9 loc) · 296 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 {

}