Sample code in object and Instance.

//Object definition example code.
class Car {
    private String make;
    private String model;
    
    public Car(String make, String model) {
        this.make = make;
        this.model = model;
    }
    
    public String getMake() {
        return make;
    }
    
    public String getModel() {
        return model;
    }
}

// 인스턴스 생성
Car myCar = new Car("Toyota", "Camry");

// 인스턴스 속성 출력
System.out.println(myCar.getMake()); // Toyota
System.out.println(myCar.getModel()); // Camry

'Developer 지식' 카테고리의 다른 글

Business logic  (0) 2023.04.02
Domain  (0) 2023.04.02
객체(Object)  (0) 2023.04.02
JAVA TDD  (0) 2023.04.02
트러블 슈팅이란?  (0) 2023.04.02

+ Recent posts