Created
March 27, 2015 08:01
-
-
Save urstory/f223878a12fed3b2eca6 to your computer and use it in GitHub Desktop.
싱글턴 패턴.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MyBean{ | |
private static MyBean instance = new MyBean(); | |
private MyBean(){} | |
public static MyBean getInstance(){ | |
return instance; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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