速配婚姻介绍所,每次执行都有不同的结果呦!

public class Partner{
public static void main(String[] args){
MatchMarry group1=new MatchMarry("曹操","传明");
MatchMarry group2=new MatchMarry("小六","小慧");
MatchMarry group3=new MatchMarry("小花","小二货");
MatchMarry group4=new MatchMarry("曹操","小花");
MatchMarry group5=new MatchMarry("传明","小六");
System.out.println("**速配婚姻介绍所,宗旨是要保证发扬\"执子之手 与子偕老\"的精神");
group1.start();
try{
group1.join();
}catch(InterruptedException e){
System.out.println("唤醒异常:"+e.getMessage());
}
group2.start();
try{
group2.join();
}catch(InterruptedException e){
System.out.println("唤醒异常:"+e.getMessage());
}
group3.start();
try{
group3.join();
}catch(InterruptedException e){
System.out.println("唤醒异常:"+e.getMessage());
}
group4.start();
try{
group4.join();
}catch(InterruptedException e){
System.out.println("唤醒异常:"+e.getMessage());
}
group5.start();
try{
group5.join();
}catch(InterruptedException e){
System.out.println("唤醒异常:"+e.getMessage());
}
System.out.println("速配结束...");
}
}
class MatchMarry extends Thread{
private String name;
private String otherName;
private boolean isMarry=false;
public MatchMarry(String name,String otherName){
this.name=name;
this.otherName=otherName;
}
public void run(){
try{
int person=(int)Math.floor((Math.random()*10+1));
if (person%2==0){
isMarry=true;
}
else{
isMarry=false;
}
if(!isMarry){
System.out.println(name+"可以与"+otherName+"结婚,祝福你们");
}else{
System.out.println(otherName+"已婚,红色警告:对待婚姻不要有二心");
}
Thread.sleep(200);
}catch(InterruptedException e){
System.out.println("唤醒异常:"+e.getMessage());
}
}

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值