用Java实现四个线程,分别对同一个int变量进行+2,-2,*2,/2的操作100次,输出变量最后的值。

要有程序的,谢谢!... 要有程序的,谢谢! 展开
 我来答
剑岚利爱0G
2011-08-05 · 超过19用户采纳过TA的回答
知道答主
回答量:71
采纳率:100%
帮助的人:53万
展开全部
public class Demo extends Thread
{
public static Integer i=100;//初始值100
private String sign;

//构造方法
public Demo(String str)
{
this.sign = str;
}

//线程运行的方法
@SuppressWarnings("static-access")
public void run()
{
if ("+".equals(this.sign))
{
for (int j = 0; j < 2000; j++)
{
this.i += 2;
}
}
else if ("-".equals(this.sign))
{
for (int j = 0; j < 2000; j++)
{
this.i -= 2;
}
}
else if ("*".equals(this.sign))
{
for (int j = 0; j < 2000; j++)
{
this.i *= 2;
}
}
else if ("/".equals(this.sign))
{
for (int j = 0; j < 2000; j++)
{
if (this.i != 0)
{
this.i /= 2;
}
}
}

}

@SuppressWarnings("static-access")
public static void main(String arg[]) throws Exception
{
new Thread(new Demo("+")).start();//启动+
new Thread(new Demo("-")).start();//启动-
new Thread(new Demo("*")).start();//启动x
new Thread(new Demo("/")).start();//启动/

Thread.currentThread().sleep(1000);//当前线程暂停1000秒,让其他4个线程 运行完
System.out.println(Demo.i);//输出结果
}
}
tian36005274
2011-08-03
知道答主
回答量:28
采纳率:0%
帮助的人:14.6万
展开全部
如果 int变量 是静态的,最后为0;
追问
怎样编程那,能不能发个程序,很急,谢谢
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式