/**
* 靜態內部類實現方式
* 單例模式類
* @author administrator
*/public class singleton4
static int a=10;
/*** static關鍵字修飾的內容,只會載入一遍
*/static
/*** static除了修飾內部類以外,
* 其他情況都是只要類被載入之後就會執行static**,
* 靜態內部類只有被呼叫時才會載入
* @author administrator
* */
public static class singleton4handler
static singleton4 instance=new singleton4(); }
public static singleton4 getinstance()
public static void main(string args)
};thread1.start();
// thread thread2=new thread()
// };
// //開啟新執行緒
// thread2.start();
ch02 ch02=new ch02();
ch02.test();
}}
靜態內部類實現單例模式
new b.c b b new b b.c c b.new c public class singleton public synchronized static singleton getinstance return instance public static singleton getins...
單例模式 靜態內部類
靜態內部類是乙個很好的實現單例的方式 看 package cn.liz.syn public class staticinner 私有的靜態內部類 private static class inner 公共的 獲取例項的方法 public static staticinner getinstance...
單例模式 靜態內部類
1 2 單例模式 靜態內部類3 4public class singletontest0711 1213 14 靜態內部類實現方式 15 16class singleton 2324 25 2.寫乙個靜態內部類,直接返回singleton 26 27private static class sing...