For attributes -- attribute_name : type For methods -- method_name( list_of_parameters) : return_type
// Attributes lastName : String firstName : String age : int // Methods getName() : String setAge( val : int ) : boolean compareGPA ( other : Student ) : int
bob : Student
lastName = "Smith" firstName = "John" age = 24