多线程同步简单用法

平常在使线程同步的时候,我们采用synchronized方法,但是在项目比较大的时候,类往往是第三方创建的,那么如何保持线程同步的呢?可以通过该类方法访问的置于同步块中:synchronized(object){//statments}

简单举一个单例模式


public class testSingleton
{
    private static Object o = testSingleton.class;
   
    private static testSingleton instance;
   
    private testSingleton()
    {
    }
   
    public static testSingleton getInstance()
    {
        synchronized (o)
        {
            if (instance == null)
            {
                instance = new testSingleton();
            }
            return instance;
        }
    }
   
    {
    }

你可能感兴趣的:(多线程)