자바 디자인 모드: 싱글 톤 모드

자바 디자인 모드: 싱글 톤
하나의 인 스 턴 스 만 있 고 전체 방문 점 을 제공 합 니 다.
코드 는 다음 과 같 습 니 다:
class singleton 
{
	private singleton() {}//          ,      ,    
	
	private static final singleton aobject = new singleton();//       
	
  /*
               ,     ,              
	       
  */
  public static singleton getInstance()
  {
	return aobject;
  }
  
  public void write()
  {
  	System.out.println("*****************");
  }
}

public class Test1
{
  public static void main(String args[])
  {
  	//          ,          ,^_^,   ?   ,    
  	singleton obj1 = new singleton();
  	obj1.write();
  	//        
  	singleton obj2 = singleton.getInstance();
  	obj2.write();
  }
}

좋은 웹페이지 즐겨찾기