<H1>Singleton</H1>
<I>What wrong with this Code?</I>

public class Singleton
{
  private static Singleton _instance;
  
  private Singleton() {}
  
  public static Singleton getInstance()
  {
    if (_instance == null) _instance = new Singleton();
    return _instance;    
  }    
  
  //...
}