阅读下列程序,请写出该程序的输出结果。public class Test35{

欢迎免费使用小程序搜题/刷题/查看解析,提升学历,成考自考报名,论文代写、论文查重请加客服微信skr-web

阅读下列程序,请写出该程序的输出结果。public class Test35{

public static void main(Stringl[] args){

System.out.println("开始:");

MyThread x=new MyThread(1000,"girl");

MyThread y=new MyThread(300, "boy");

x.start();  y.start();

while(x.isAlive()||y.isAlive0());

System.out.println("结束");

}}class MyThread extends Thread{

int dt;

String name;

public MyThread(int c,String n){

dt=c;        name =n;      }

public void run(){

MyResourceClass.outMsg(this);      }}class MyResourceClass{

synchronized static void outMsg(MyThread th){

System.out.println(th.name+"  "+"启动.");

for(int i=0;i<2;i++){

System.out.println(th.name+"  第"+i+ 次活动.");

try{

Thread.sleep(th.dt);

}catch(InterruptedException e){}          }

System.out.println(th.name+"  "+"活动完成.");     }} 

阅读下列程序,请写出该程序的输出结果。

开始:gir启动.gir第0次活动.gir第1次活动.gir活动完成.boy启动.boy第0次活动.boy第1次活动.doy活动完成.结束.

访客
邮箱
网址

通用的占位符缩略图

人工智能机器人,扫码免费帮你完成工作


  • 自动写文案
  • 自动写小说
  • 马上扫码让Ai帮你完成工作
通用的占位符缩略图

人工智能机器人,扫码免费帮你完成工作

  • 自动写论文
  • 自动写软件
  • 我不是人,但是我比人更聪明,我是强大的Ai
Top