关于线程锁作用对象的基础知识!

2018-06-18 01:05:43来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

线程不同步,欲使用 synchronized 来同步锁,必须保证线程作用的是同一个对象!否则锁不起作用!

简单demo例子:

方式一:

package com.test;

public class Test10{

	//==单例对象!(对象不唯一,synchronized不起作用!)====================
	private Test10(){};//构造方法私有化
	private static Test10 t10;//对象私有化
	public static Test10 getOnly(){
		if(t10 == null){
			t10 = new Test10();
		}
		return t10;
	}
	//==多线程=======================
	public void init1(){
		new Thread(new Runnable() {
			public void run() {
				getOnly().con("生产");
			}
		}).start();
	}
	public void init2(){
		new Thread(new Runnable() {
			public void run() {
				getOnly().con("消费");
			}
		}).start();
	}
	//==线程间竞争的方法================
	public synchronized void con(String con){
		for(int i=0;i<1000;i++){
			System.out.println(con+i);
		}
	}
	
	public static void main(String[] args) {
		getOnly().init1();
		getOnly().init2();
	}
}

方式二:

package com.test;

public class Test11 {
	
	//==一个方法内多个线程=======================
	public void init1(){
		
		//只有一个对象!
		final Test11 t11 = new Test11();
		
		new Thread(new Runnable() {
			public void run() {
				t11.con("生产");
			}
		}).start();
		new Thread(new Runnable() {
			public void run() {
				t11.con("消费");
			}
		}).start();
	}
	
	//==线程间竞争的方法================
	public synchronized void con(String con){
		for(int i=0;i<100;i++){
			System.out.println(con+i);
		}
	}
}
class Testxx{
	
	public static void main(String[] args) {
		
		final Test11 t11 = new Test11();
		t11.init1();
		
	}
	
}

  

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:spring boot 源码解析2-SpringApplication初始化

下一篇:生成32位大写的随机唯一字符