JAVA

인스턴스(instance) 클래스 생성 예시

homoon 2023. 5. 2. 16:42
private 클래스_이름 instance = new 클래스_이름();
public 클래스_이름 getInstance() {
	코드 내용
	return instance;
}
private 클래스_이름() {}