求解JAVA编程题:编写一个应用程序,创建三个线程分别显示各自的运行时间

要用Calendar不好使。。。... 要用Calendar
不好使。。。
展开
 我来答
匿名用户
2017-08-28
展开全部
public class ThreadRuningTime {
public static AtomicInteger integer = new AtomicInteger(0);
public static AtomicInteger s = new AtomicInteger(0);
public static int threadNum = 3;
public static void main(String[] args) {

for (int i = 0; i < threadNum; i++) {
new Thread(new MyThread()).start();
}


new Thread(new Runnable() {
public void run() {
while(true) {
if 春启(s.get()==threadNum) {
System.out.println(integer.get());
break;
}
}
}
}).start();
}
public static class MyThread implements Runnable {
@Override
public void run() {
long startTime = System.currentTimeMillis();
try {
Thread.sleep(new Random().nextInt(2000));
} catch (InterruptedException e) {
e.printStackTrace();
}
for (int i = 亏携0; i < 10000000; i++) {
integer.incrementAndGet();
}

System.out.println(Thread.currentThread().getName()+" running time "+(System.currentTimeMillis()-startTime+"ms"销森伏));
s.incrementAndGet();
}

}
}

形印声传2019
2010-11-23 · TA获得超过482个赞
知道小有建树答主
回答量:383
采纳率:100%
帮助的人:322万
展开全部

用Calendar的话,打印时间的地方就改团梁为Calendar.getInstance().getTime() 

我很奇怪,为什源袜么雹或激代码贴不上来?? 图片也插入不了?

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
longzeqqkoudai
2010-11-24
知道答主
回答量:1
采纳率:0%
帮助的人:0
展开全部
import java.util.Calendar;
import java.util.concurrent.locks.Lock;

public class MultiThread {
static Lock mylock;
public static void main(String[] args) {
RunningObject1 r1 = new RunningObject1();

Thread t1 = new Thread(r1, "肆拆t1");
Thread t2 = new Thread(r1, "t2");
Thread t3 = new Thread(r1, "t3");
t1.start();
t3.start();
t2.start();
}

static class RunningObject1 implements Runnable {
public void run() {
synchronized(this){
String name=Thread.currentThread().getName();
System.out.println(name+"开始时间樱局:"+Calendar.getInstance().getTimeInMillis());

for (int i = 0; i < 100000000; i++) {
if (i == 9999999) {
System.out.println(name+"裂颂枣结束时间:"+Calendar.getInstance().getTimeInMillis());
break;
}
}
}
}
}

}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
我很菜
2010-11-24 · TA获得超过345个赞
知道小有建树答主
回答量:126
采纳率:0%
帮助的人:92.5万
展开全部
public class ThreadE{
class Thread2 implements Runnable{
public void run(){
System.out.println(Thread.currentThread().getName()+" run "+Calendar.getInstance().getTime());
}
}

public static void main(String[] args) {
ThreadE te = new ThreadE();
new Thread(te.new Thread2()).start();
new Thread(te.new Thread2()).start();
new Thread(te.new Thread2()).start();
}
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友9cba1dea7
2017-08-24 · TA获得超过271个赞
知道小有建树答主
回答量:313
采纳率:52%
帮助的人:130万
展开全部

import java.util.Calendar;

public class MyThread implements Runnable{

String name;

public MyThread(String name){

this.name = name;

}

@Override

public void run() {

Calendar time1  = Calendar.getInstance();

long t1 = time1.getTimeInMillis();

/*---------------------

线程答芹体

-----------------------------------*/

Calendar time2  = Calendar.getInstance();

long t2 = time2.getTimeInMillis();

System.out.println("郑悉线程"+name+"运行时间为:"喊举乎+(t2-t1)+"毫秒");

}


}

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(5)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式