Guest User

Untitled

a guest
May 26th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.17 KB | None | 0 0
  1. public class Foo{
  2.  
  3. public static Foo _instance = null;
  4.  
  5. public Foo getInstance() {
  6.     if(Foo._instance == null){
  7.         Foo._instance = new Foo();
  8.     }
  9.     return Foo._instance;
  10. }
Add Comment
Please, Sign In to add comment