同步代码块,
当多个线程访问同一对象object中的synchronized (this)时,同一时刻只能一个线程访问synchronized (this)同步代码块中内容,其他线程可以访问该object中非synchronized (this)同步代码块,最关键的是,其他线程在一个线程访问同步代码块时,只能等待,被阻塞在同步代码块前。当该线程访问结束,其他线程才能获取访问同步代码块的权限。
package com.my.thread;
public class Ticket implements Runnable{
private int count=5;
public void run() {
// TODO Auto-generated method stub
for (int i = 0; i < 10; i++) {
System.out.println(Thread.currentThread().getName()+"----");
synchronized (this) {
if(count>0){
try {
Thread.sleep(1000);
} catch (Exception e) {
// TODO: handle exception
}
System.out.println(Thread.currentThread().getName()+"卖票:"+count--);
}
}
}
}
public static void main(String[] args) {
Ticket ticket=new Ticket();
Thread thread1=new Thread(ticket,"线程A");
Thread thread2=new Thread(ticket,"线程B");
Thread thread3=new Thread(ticket,"线程C");
thread1.start();
thread2.start();
thread3.start();
}
}
输出:
线程A----
线程C----
线程B----
线程A卖票:5
线程A----
线程A卖票:4
线程A----
线程B卖票:3
线程B----
线程C卖票:2
线程C----
线程B卖票:1
线程B----
线程B----
线程B----
线程B----
线程B----
线程B----
线程B----
线程B----
线程A----
线程A----
线程A----
线程A----
线程A----
线程A----
线程A----
线程C----
线程C----
线程C----
线程C----
线程C----
线程C----
线程C----
线程C----