博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
多线程吃饺子练习
阅读量:5307 次
发布时间:2019-06-14

本文共 1038 字,大约阅读时间需要 3 分钟。

创建一个带有run方法继承Tread的类

public class Race {

public class Child extends Thread{

private String name;
private long time;
private Plate p;
public Child(String name,Plate p,long time){
  this.name = name;
  this.p = p;
  this.time = time;
}
@Override
public void run() {
// TODO Auto-generated method stub
  int num = 0;
  while(true){
  synchronized (this.p){
  if(this.p.getJz()==0){
  break;
}
  num++;
  this.p.setJiaozi(this.p.getJz()-1);
  System.out.println(this.name + "吃了第" + num + "个饺子!");
}
  try {
    Thread.sleep(time);
  } catch (InterruptedException e) {
// TODO Auto-generated catch block
  e.printStackTrace();
}
}
}
}

 

再创建一个可以传参的方法

public class Plate {

  private int jz = 25;

  public int getJz() {

  return jz;
}

public void setJiaozi(int jz) {

  this.jz = jz;
}

}

创建main方法运行线程

public class EatJiaoZi {

public static void main(String[]args) {

  Plate p = new Plate();
  Child c1 =new Child("z",p,2000);
  Child c2 =new Child("l",p,1500);
  c1.start();
  c2.start();
}
}

转载于:https://www.cnblogs.com/whj1986556646/p/5559234.html

你可能感兴趣的文章
简单了解HashCode()
查看>>
闭包理解
查看>>
asp.net C#后台实现下载文件的几种方法(全)
查看>>
Web前端开发工程师的具备条件
查看>>
实用Android开发工具和资源精选
查看>>
TileMap
查看>>
JS属性大全
查看>>
java复制文件
查看>>
第一册:lesson seventy nine.
查看>>
GCD的同步异步串行并行、NSOperation和NSOperationQueue一级用dispatch_once实现单例
查看>>
团队作业
查看>>
数据持久化时的小bug
查看>>
mysql中key 、primary key 、unique key 与index区别
查看>>
bzoj2257
查看>>
Linux查看文件编码格式及文件编码转换<转>
查看>>
Leetcode: Find Leaves of Binary Tree
查看>>
Vue 模板解释
查看>>
http://www.bootcss.com/
查看>>
20145308 《网络对抗》 注入shellcode+Return-to-libc攻击 学习总结
查看>>
将多张图片和文字合成一张图片
查看>>