developYan 2021-02-13 13:09 采纳率: 100%
浏览 78
已结题

java 多线程synchronized问题

package com.study.concurrent.demo;

import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
import org.springframework.util.StopWatch;

import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

@Slf4j
class SynchronizedTests {
    @Test
    public void doFor() throws InterruptedException {
        StopWatch sw = new StopWatch();
        CountDownLatch countDownLatch = new CountDownLatch(2);
        sw.start("程序开始执行");
        ExecutorService executorService = Executors.newCachedThreadPool();
        executorService.execute(()->{
            forValue();
            countDownLatch.countDown();
        });
        executorService.execute(()->{
            forValue();
            countDownLatch.countDown();
        });
        countDownLatch.await();
        executorService.shutdown();
        sw.stop();
        log.info("程序用时,{}",sw.prettyPrint());
    }
    public synchronized void forValue(){
        for (int i = 0; i < 1000000; i++) {
            log.info("输出,{}",i);
        }
    }
}
//运行时间
//1040582528 no synchronized
//942745806 synchronized

各位看官过来看看嘛,synchronized修改的forValue方法,两个线程会顺序执行,第一个线程先输出100万次,第二个线程才开始输入100万。如果forValue方法没被synchronized修饰两个线程是同时执行,顺序交替无序。按理没有synchronized的执行时间应该更短。但是实际测的时间两者相差无几,这是为啥。

展开全部

  • 写回答

2条回答 默认 最新

  • allway2 2021-02-14 01:27
    关注

    时间都花在log.info("输出,{}",i);上了。把log.info("输出,{}",i);换成非输出等待1秒

                try {
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 关于#python#的问题:有偿求一个千寻框架找书机器人插件
  • ¥15 安装numpy时出现TypeError应该怎么办?
  • ¥15 ArcGIS Pro时空模式挖掘工具
  • ¥15 获取到海康hls的视频地址是http协议导致无法正常播放
  • ¥15 seL4如何实现从终端输入数据
  • ¥15 方波信号时频特征分析/信号调制与解调过程分析/利用DFT分析信号频谱
  • ¥20 两台硬件相同的琴设备一个是高阶版,怎么扒到初阶版
  • ¥30 matlab求解周期与坐标
  • ¥15 MATLAB图片转灰度格式问题
  • ¥15 把h5作品链接复制到自己的账号里