用两个线程玩猜数字游戏.

用两个线程玩猜数字游戏,第一个线程负责随机给出1~100之间的一个整数,第二个线程负责猜出这个数。要求每当第二个线程给出自己的猜测后,第一个线程都会提示“猜小了”、“猜大了”或“猜对了”。猜数之前,要求第二个线程要等待第一个线程设置好要猜测的数。第一个线程设置好猜测数之后,两个线程还要相互等待,其原则是:第二个线程给出自己的猜测后,等待第一个线程给出的提示;第一个线程给出提示后,等待给第二个线程给出猜测,如此进行,直到第二个线程给出正确的猜测后,两个线程进入死亡状态。

package dxc;
import java.util.Random;
public class cai {
	public static void main(String []args){
		caiThread fnum=new caiThread();
		Thread first = new Thread(fnum);
		first.run();
		while(true){
			try{
				Thread.sleep(10);
				caiThread snum=new caiThread();
				Thread second =new Thread(snum);
				second.interrupt();
				second.run();
				Thread.sleep(10);
				first.interrupt();
				System.out.println("随机生成的数是"+fnum.getNum()+",猜的数字是"+snum.getNum());
				if(snum.getNum()>fnum.getNum())
					System.out.println("猜打了!");
				else if(snum.getNum()<fnum.getNum())
					System.out.println("猜小了!");
				else{
					System.out.println("终于猜对啦!");
					break;
				}
			}catch(InterruptedException e){
				e.printStackTrace();
			}
		}
	}
}
package dxc;
import java.util.Random;
class caiThread implements Runnable{
	int num;
	public synchronized void run(){
		Random r=new Random();
		num=r.nextInt(100);
	}
	public int getNum(){
		return num;
	}
	public void setNum(int num){
		this.num=num;
	}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

百无聊赖Zy

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值