質問内容
以下のコードでは,片方のスレッドでコマンドを受け付け,もう片方でそのコマンドに基づいた実行をするというコードを目指してかきました.求める形としては
Command>add sample1 としたときに
listに加わってほしいのですが,現段階では以下のように一度改行を挟まないとうまく動いてくれません.これを直すにはどのようにすればよいでしょうか.
また,この内容のプログラムならばスレッドを使う必要はあまり感じられないかもしれませんが,スレッドを使ったやり方でご教授をお願します.
java ThreadList
Command>add sample1
Command>print
[]
Command>add
sample2
add : sample2
Command>print
[sample2]
Command>exit
Java
1import java.util.*; 2public class ThreadList implements Runnable { 3 4 int id=1; 5 //0:inout,1:reader 6 7 static int sw=0; 8 static int command_num=0; 9 static Object lock; 10 LinkedList<String> list=new LinkedList<String>(); 11 12 ThreadList(int n,Object lock,LinkedList<String> list){ 13 this.lock=lock; 14 this.list=list; 15 id=n; 16 } 17 18 public static void main(String[] args){ 19 Object lock=new Object(); 20 LinkedList<String> list=new LinkedList<String>(); 21 (new Thread(new ThreadList(0,lock,list))).start(); 22 (new Thread(new ThreadList(1,lock,list))).start(); 23 24 25 } 26 public void run(){ 27 while(true){ 28 action(); 29 } 30 } 31 void action(){ 32 synchronized(lock){ 33 try{ 34 while(sw==id) lock.wait(); 35 }catch(InterruptedException e){} 36 37 if(id==0){ 38 Scanner scan=new Scanner(System.in); 39 System.out.printf("Command>"); 40 String command=scan.nextLine(); 41 if(command.equals("add")){ 42 String content=scan.nextLine(); 43 command_num=1; 44 list.add(content); 45 } 46 else if(command.equals("remove")){ 47 String content=scan.nextLine(); 48 command_num=2; 49 list.add(content); 50 } 51 else if(command.equals("print")){ 52 command_num=3; 53 } 54 else if(command.equals("exit")){ 55 command_num=4; 56 System.exit(0); 57 } 58 59 sw=id; 60 lock.notifyAll(); 61 62 } 63 else if(id==1){ 64 if(command_num==1){ 65 System.out.println("add : "+list.get(list.size()-1)); 66 } 67 else if(command_num==2){ 68 System.out.println("remove : "+list.get(list.size()-1)); 69 LinkedList<String> set=new LinkedList<String>(); 70 Collections.addAll(set,list.get(list.size()-1)); 71 list.removeAll(set); 72 } 73 else if(command_num==3){ 74 System.out.println(list); 75 } 76 else if(command_num==4){ 77 System.exit(0); 78 } 79 80 sw=id; 81 command_num=0; 82 lock.notifyAll(); 83 84 } 85 } 86 } 87}
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/27 02:34