Methods
- Method: Sequence of instructions that accesses the data of an
object
- You manipulate objects by calling its methods
- Class: Set of objects with the same behavior
- Class determines legal methods
String greeting = "Hello";
greeting.println() // Error
greeting.length() // OK
- Public Interface: Specifies what you can do with the objects of a
class