多线程 同步 简单示例

import java.util.Arrays;


public class maopao extends Thread{
 
 public static int a=9;
 
 String k=new String("");
 @Override
 public void  run() {
  // TODO Auto-generated method stub
  System.out.println("进入线程");
  super.run();
  synchronized (k){  
  try {
      
   this.sleep(6000);
  } catch (InterruptedException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
  
      for(int i=0;i<6;i++){
      
       System.out.println(i);
   }
      
      }
 }

 public static void main(String[] args) {
   // 一种方法 
   maopao m=new maopao();
      Thread t1=new Thread(m);
      Thread t2=new Thread(m);
      Thread t3=new Thread(m);
   t1.start();
   t2.start();
   t3.start(); 
 
 }

 

 

 

 

 

 

 

多窗口售票系统   线程

  1. package net.okren.java;   
  2.   
  3. class SaleTicket implements Runnable{   
  4.     private int tickets = 100;   
  5.     public void run(){   
  6.         while(tickets > 0){   
  7.             sale();   
  8.         }   
  9.     }   
  10.        
  11.     private synchronized void sale(){   
  12.         if(tickets > 0){   
  13.             System.out.println(Thread.currentThread().getName() + "卖出 第 "+ (100 - tickets + 1)+"张票");   
  14.             tickets--;   
  15.             try{   
  16.                 Thread.sleep(500);   
  17.             }catch(InterruptedException e){   
  18.                 e.printStackTrace();   
  19.             }   
  20.         }   
  21.     }   
  22. }   
  23.   
  24. public class JavaTest {   
  25.            
  26.     public static void main(String[] args){   
  27.   
  28.         SaleTicket st = new SaleTicket();   
  29.         Thread t1 = new Thread(st, "一号窗口");   
  30.         Thread t2 = new Thread(st, "二号窗口");   
  31.         Thread t3 = new Thread(st, "三号窗口");   
  32.         Thread t4 = new Thread(st,"四号窗口 ");   
  33.         t1.start();   
  34.         t2.start();   
  35.         t3.start();   
  36.         t4.start();   
  37.            
  38.        
  39.            
  40.     }   
  41. }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值