Java--->练习线程题(每秒求和)

Java--->线程题

题目

  • 一个线程运算1+2+3+4+5+6+…+19+20要求此线程每隔0.1秒进行一次累加计算 ,而另一个线程没隔0.1秒读取前一个线程的运算结果

代码

public class Exam1 {
    public static void main(String[] args) {
        Result result = new Result();
        result.sum = 0;
        //启动俩个线程
        new Thread(new Addition(result)).start();
        new Thread(new Output(result)).start();
    }
}

//返回结果
class Result {
    //定义一个变量,来存储和
    int sum = 0;
}

//打印输出结果
class Output implements Runnable {
    Result result;

    public Output(Result result) {
        this.result = result;
    }

    @Override
    public void run() {
        while (true) {
            try {
                Thread.sleep(100);
                System.out.println(Thread.currentThread().getName() + "获取的值为" + result.sum);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}

//启动线程
class Addition implements Runnable {
    Result result;
    int count = 1;

    public Addition(Result result) {
        this.result = result;
    }

    public void sum() {
        for (int i = 1; i <= 19; i++) {
            result.sum = result.sum + i;
        }
    }

    @Override
    public void run() {
        while (true) {
            sum();
            try {
                Thread.sleep(100);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值