*/
public class InerClassMakeIntance {
private static InerClassMakeIntance instance =null;
private InerClassMakeIntance() {
}
public static InerClassMakeIntance getInstance() {
return InerInstance.t1;
}
private static class InerInstance {
private static InerClassMakeIntance t1 = new InerClassMakeIntance();
}
}