Advertisement
Guest User

Untitled

a guest
Oct 21st, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. MyClass{
  2. MyClass instance;
  3.  
  4. private Myclass(){
  5. }
  6.  
  7. public MyClass getInstanse(){
  8. if(instance == null){
  9. this.instance == new MyClass();
  10. }
  11. return instance;
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement