91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中Message類和Queue類如何使用

發布時間:2021-07-02 14:45:54 來源:億速云 閱讀:263 作者:Leah 欄目:編程語言

Java中Message類和Queue類如何使用,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

Message類

package com.example.test;  public class Message {  public static int id;  public String content;  public String getContent() {  return content;  }  public void setContent(String content) {  this.content = content;  }  public int getId() {  return id;  }  public void setId(int id) {  Message.id = id;  }  }

Queue類

package com.example.test;  import java.util.ArrayList;  import java.util.List;  public class Queue {  List<Message> queue = new ArrayList<Message>();  /** 隊列中message對象的***值,默認為5 */  int maxMessageNum = 5;  public synchronized void produce(Message message) {  this.notifyAll();  while (queue.size() == maxMessageNum) {  System.out.println(Thread.currentThread().getName()  + " 隊列滿!等待中。。。");  try {  this.wait();  } catch (InterruptedException e) {  e.printStackTrace();  }  }  queue.add(message);  System.out.println(Thread.currentThread().getName() + "正在生產"  + message.getContent() + "。。。 ,當前個數:" + getCount());  }  public synchronized void consume() {  this.notifyAll();  while (queue.size() == 0) {  System.out.println(Thread.currentThread().getName()  + " 隊列空!等待中。。。");  try {  System.out.println("begin!");  wait();  System.out.println("end!");  } catch (InterruptedException e) {  e.printStackTrace();  }  }  Message message = queue.get(0);  queue.remove(0);  System.out.println(Thread.currentThread().getName() + "正在消費"  + message.getContent() + "。。。 ,當前個數: " + getCount());  }  public synchronized int getCount() {  return queue.size();

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

普洱| 宜丰县| 手机| 永平县| 罗山县| 松阳县| 惠安县| 宜丰县| 诸暨市| 柳林县| 杭锦旗| 陈巴尔虎旗| 从江县| 琼海市| 天长市| 东城区| 桑日县| 光山县| 哈密市| 京山县| 定日县| 侯马市| 华安县| 聂荣县| 新巴尔虎左旗| 镇安县| 南安市| 武城县| 固原市| 土默特左旗| 加查县| 台山市| 平舆县| 宜丰县| 汾西县| 温宿县| 邛崃市| 济源市| 秦皇岛市| 盘山县| 阿拉尔市|