前提・実現したいこと
下記のプログラムはLinkedBlockingQueueを使用して作ったものだが、それをArrayBlockingQueueを使用したプログラムに修正したい
java
1import java.util.concurrent.BlockingQueue; 2import java.util.concurrent.LinkedBlockingQueue; 3import java.util.concurrent.ArrayBlockingQueue; 4import javafx.scene.paint.Color; 5import tg.Turtle; 6import tg.TurtleFrame; 7public class BlokingQueueSimulation { 8 BlockingQueue<Turtle> queue = new LinkedBlockingQueue<Turtle>(); 9 TurtleFrame f = new TurtleFrame(); 10 public static void main(String[] args) { 11 new BlokingQueueSimulation().start(); 12 } 13 void start() { 14 new Thread(new TurtleProducer(10, 50.0)).start(); 15 new Thread(new TurtleProducer(10, 200.0)).start(); 16 new Thread(new TurtleProducer(10, 300.0)).start(); 17 new Thread(new TurtleConsumer(20, 200.0)).start(); 18 new Thread(new TurtleConsumer(10, 400.0)).start(); 19 } 20 class TurtleProducer implements Runnable { 21 private int n = 0; 22 private double ypos = 200.0; 23 final double xpos = 50.0; 24 TurtleProducer(int n, double ypos) { 25 this.n = n; this.ypos = ypos; 26 } 27 public void run() { 28 for(int i = 0; i < n; i++) { 29 Turtle t = new Turtle(xpos, ypos, 90.0); 30 f.add(t); 31 int speed = (int)((Math.sin(i / 3.0) + 1.5) * 50.0); 32 t.speed(speed); 33 t.setTScale((i+1.0)/20.0); 34 t.setTColor(Color.BLUE); 35 t.moveTo(200.0, 200.0); 36 t.setTColor(Color.BLACK); 37 try { 38 queue.add(t); // タートルをキューに追加する 39 } catch(Exception e) { } 40 } 41 } 42 } 43 class TurtleConsumer implements Runnable { 44 private int n = 0; 45 private double ypos = 200.0; 46 final double xpos = 350.0; 47 TurtleConsumer(int n, double ypos) { 48 this.n = n; this.ypos = ypos; 49 } 50 public void run() { 51 for(int i = 0; i < n; i++) { 52 try { 53 Turtle t = queue.element(); // タートルをキューから取り出す 54 int speed = (int)((-Math.cos(i / 3.0) + 1.5) * 50.0); 55 t.speed(speed); 56 t.setTColor(Color.RED); 57 t.moveTo(xpos, ypos); 58 f.remove(t); 59 }catch(Exception e) { } 60 } 61 } 62 } 63}
試したこと
java
1BlockingQueue<Turtle> queue = new LinkedBlockingQueue<Turtle>();
この部分を
java
1BlockingQueue<Turtle> queue = new ArrayBlockingQueue<Turtle>(1);
に変更した
予想していること
java
1queue.add(t); // タートルをキューに追加する
java
1Turtle t = queue.element(); // タートルをキューから取り出す
この二つをArrayで使いやすいように変更する必要がある?
自分ができるなりに調べたり教科書を見直すなどしたのですが、解決法が一向に思い浮かびませんでした
教科書
https://www.i.h.kyoto-u.ac.jp/users/tsuiki/javaEveryone3/index.html
問題が何か不明なのに、何の「解決法」を探しているのかが全く分かりません。
実際に書き換えて、こういう問題が出たから解決したい、というのならわかりますが。
回答1件
あなたの回答
tips
プレビュー