저자 : Steve Kochan 3장. Classes, Objects, and Methods - Instances and Methods [ ClassOrInstance method ]; = [ 클래스 이름 또는 클래스 인스턴스 클래스메소드 ] ; = [ receiver message ]; yourCar = [Car new]; get a new car Car 클래스에 new 메시지를 send 해서 오브젝트(object) yourCar 생성 [yourCar prep]; get it ready for first-time use [yourCar drive]; drive your car currentMileage = [yourCar odometer]; get current mileage - 3 section ...