某士兵大數(shù)據(jù)架構(gòu)師2023\/--》ccys1473
以下內(nèi)容忽略
day 01–單例模式
單列模式常見的八種實(shí)現(xiàn)方式
1、static final + private + getInstance 簡(jiǎn)單實(shí)用/不管用到與否,都會(huì)被實(shí)例化 *
package Sigleton;
public class T01 {
? ?private static final T01 t01 = new T01();
? ?public static T01 getInstance(){
? ? ? ?return t01;
? ?}
? ?public static void main(String[] args) throws InterruptedException {
? ? ? ?for(int i=0;i<10;i++){
? ? ? ? ? ?Thread.sleep(2);
? ? ? ? ? ?new Thread(new Runnable() {
? ? ? ? ? ? ? ?@Override
? ? ? ? ? ? ? ?public void run() {
? ? ? ? ? ? ? ? ? ?System.out.println(T01.getInstance().hashCode());
? ? ? ? ? ? ? ?}
? ? ? ? ? ?}).start();
? ? ? ?}
? ?}
}
標(biāo)簽: