Online Test - Design Pattern - Singleton

Online Test Home Page

public class Singleton

         private static Singleton instance = null; 
         protected Singleton() 
         {  
         } 
         public static Singleton getInstance() 
         { 
                   if(instance == null) 
                   { 
                           instance = new Singleton(); 
                   } 
                   return instance; 
         } 
}

Q . .







Out of correct.


Try More tests.