Skip to content

Instantly share code, notes, and snippets.

@urstory
Created March 27, 2015 08:01
Show Gist options
  • Save urstory/f223878a12fed3b2eca6 to your computer and use it in GitHub Desktop.
Save urstory/f223878a12fed3b2eca6 to your computer and use it in GitHub Desktop.
싱글턴 패턴.
public class MyBean{
private static MyBean instance = new MyBean();
private MyBean(){}
public static MyBean getInstance(){
return instance;
}
}
public class Test{
public static void main(String args[]){
MyBean bean = MyBean.getInstance();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment