JAVA启动两个线程,每个线程都作从1至100的输出

JAVA启动两个线程,每个线程都作从1至100的输出。... JAVA启动两个线程,每个线程都作从1至100的输出。 展开
 我来答
蓝心稻草
2009-11-17 · TA获得超过537个赞
知道小有建树答主
回答量:408
采纳率:0%
帮助的人:135万
展开全部
package test;

public class Test {

public static void main(String[] args) {
new Thread(new TestThread(1)).start();
new Thread(new TestThread(2)).start();
}

}

class TestThread implements Runnable{

private int num;

public TestThread(int num){
this.num = num;
System.out.println("This is thread"+num);
}

public void run() {
for(int i=1;i<=100;++i){
System.out.println(i);
}
}

}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
rainbow1023
2009-11-17 · TA获得超过345个赞
知道小有建树答主
回答量:1107
采纳率:0%
帮助的人:823万
展开全部
package baidu;

public class Baidu implements Runnable {
public Baidu() {
}

private String str1 = "";
private String str2 = "";
private String str3 = "";
private String str4 = "";
private static String temp;

public void run() {
for (int i = 1; i <= 100; i++) {
System.out.println(String.valueOf(i));
}
}

public static void main(String args[])
{
Thread thread = new Thread(new Baidu());
thread.start();
try {
thread.sleep(1000);
}
catch (InterruptedException ex) {
ex.printStackTrace();
}
System.out.println("End");
thread = new Thread(new Baidu());
thread.start();
try {
thread.sleep(1000);
}
catch (InterruptedException ex) {
ex.printStackTrace();
}
System.out.println("End all");
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式