ElasticStack高級開發(fā)與架構(gòu)2023\/--》ccys1473
以下內(nèi)容忽略
4、static + private + getInstance + instance + synchronized(對象鎖)縮小鎖代碼,但不安全
package Sigleton;
public class T04 {
? ?private static T04 t04;
? ?public static T04 getInstance(){
? ? ? ?if(t04 == null){
? ? ? ? ? ?synchronized (T04.class){
? ? ? ? ? ? ? ?try {
? ? ? ? ? ? ? ? ? ?Thread.sleep(2);
? ? ? ? ? ? ? ?}catch (Exception e){
? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ?t04 = new T04();
? ? ? ? ? ?}
? ? ? ?}
? ? ? ?return t04;
? ?}
? ?public static void main(String[] args){
? ? ? ?for(int i=0;i<20;i++){
? ? ? ? ? ?new Thread(new Runnable() {
? ? ? ? ? ? ? ?@Override
? ? ? ? ? ? ? ?public void run() {
? ? ? ? ? ? ? ? ? ?System.out.println(T04.getInstance().hashCode());
? ? ? ? ? ? ? ?}
? ? ? ? ? ?}).start();
? ? ? ?}
? ?}
}