자바 다 중 스 레 드 - 안전 하지 않 은 스 레 드 수정

2827 단어 자바
동시 다발: 같은 대상 이 여러 스 레 드 를 동시에 조작 하 는 스 레 드 동기 화: 하나의 대기 체제 입 니 다. 앞의 스 레 드 가 사용 되 기 를 기다 리 고 다음 스 레 드 를 사용 하 는 동기 화 조건: 대기 열 을 형성 하고 잠 금 체제 (synchronized) 동기 화 블록: synchronized (구체 적 인 대상) {코드};자원 잠 금, 하나의 스 레 드, 하나의 스 레 드 사용
티켓 강탈:
public class n {

public static void main(String[]args) throws InterruptedException
{
web wb=new web();
new Thread(wb,"a").start();
new Thread(wb,"b").start();
new Thread(wb,"c").start();
}
}

class web implements Runnable{
int num=10;
private boolean flag=true;
public void run()
{
while(flag)
{
    test();
}
}
public synchronized void test()//        , this  ,             ,     cpu  ,   
                            //             
{   if(num<0)
        {
    flag=false;
    return;
}
try {
    Thread.sleep(200);
}catch(InterruptedException e)
{
    e.printStackTrace();
}
System.out.println(Thread.currentThread().getName()+"-->"+num--);
//     ,         ,      
//  :   1   ,        ,    ,        
//   :         ,          ,    
}
}

인출:
public class el {

public static void main(String[]args)
{
    account a=new account(100,"me");
    get g=new get(a,80,"she");
    get g2=new get(a,90,"he");
    g.start();
    g2.start();
}

}

//  
class account {
int money;
String name;
public account(int money,String name)
{
    this.money=money;
    this.name=name;
}

}
//    

class get extends Thread
{
account a; //     
int getmoney; //       
int getall; //       

public get (account a,int getmoney,String name)
{
    super(name);//Thread    name
    this.a=a;
    this.getmoney=getmoney;
}

public void run()
{
    test();
}
public /*synchronized */void test()//    ,    this,    account
{//  a.money account  ,              ,       
//       
    if(a.money<=0)
    {
        return;
    }
synchronized(a){

    if(a.money-getmoney<0) //     
    {
        return;
    }
    try {
        Thread.sleep(1000);
    } catch (InterruptedException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    a.money-=getmoney;
    getall+=getmoney;
    System.out.println(this.getName()+"-->     :"+a.money);
    System.out.println(this.getName()+"-->     :"+getall);
}
}
}

용기:
public class h {

public static void main(String[]args)
{
    List list=new ArrayList();

    for(int i=0;i<10000;i++)
    {
        new Thread(()->
        {synchronized(list) {
            list.add(Thread.currentThread().getName());}}
                ).start();
    }
    try {
        Thread.sleep(10000);
    } catch (InterruptedException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    System.out.println(list.size());

}
}

좋은 웹페이지 즐겨찾기