양군의 행복한 이야기

singleton 페턴 본문

java

singleton 페턴

까망거북 2010. 6. 4. 17:01
public class GlobalValue {
    private static GlobalValue gv;
   
    static {
        gv = new GlobalValue();
    }
   
    public static GlobalValue getInstance(){
        return gv;
    }
}

어디서나 하나의 객체를 얻을수 있다.
내맘대로 코드..