用JAVA写一个多线程程序,如写四个线程,二个对一个变量减一,输出。

 我来答
修怀芹26
2012-06-09 · TA获得超过1208个赞
知道小有建树答主
回答量:695
采纳率:75%
帮助的人:454万
展开全部
public class Test {
int i=0;//在线程中对这个变量进行加减操作,并输出操作后的值
public static void main(String[] args) {
Test test = new Test();
new AddTest(test).start();
new DecTest(test).start();
}
}

class AddTest extends Thread {
private Test test;
public AddTest(Test t) {
super();
test = t;
}

public void run() {
while (!interrupted()){
test.i++;
System.out.println(test.i);
try {
sleep(1000);
} catch (InterruptedException e) {
}
}
}
}

class DecTest extends Thread {
private Test test;
public DecTest(Test t) {
super();
test = t;
}

public void run() {
while (!interrupted()){
test.i--;
System.out.println(test.i);
try {
sleep(1000);
} catch (InterruptedException e) {
}
}
}
}
百度网友dc22927
2012-06-05
知道答主
回答量:10
采纳率:0%
帮助的人:9.1万
展开全部
public class Test
{
private int j;
public static void main(String args[]){
Test tt=new Test();
Test1 test1=tt.new Test1();
Test2 test2=tt.new Test2();
for(int i=0;i<2;i++){
Thread t=new Thread(test1);
t.start();
t=new Thread(test2);
t.start();
}
}
private synchronized void test1(){
j++;
System.out.println(Thread.currentThread().getName()+"-test1:"+j);
}private synchronized void test2(){
j--;
System.out.println(Thread.currentThread().getName()+"-test2:"+j);
}
class Test1 implements Runnable{
public void run(){
for(int i=0;i<100;i++){
test1();
}
}
}
class Test2 implements Runnable{
public void run(){
for(int i=0;i<100;i++){
test2();
}
}
}
}

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

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式