자바 LongAdder 와 AtomicLong 누적 테스트 비교

1270 단어
package atomadder;

import java.text.MessageFormat;
import java.util.concurrent.atomic.AtomicLong;
import java.util.concurrent.atomic.LongAdder;
import java.util.logging.Logger;

public class test {
	private static Logger logger = Logger.getLogger("LoggingDemo");
	public static void atomicLong() throws Throwable {
        final int threadCount = 32;
        final AtomicLong longValue = new AtomicLong();
        Thread[] threads = new Thread[threadCount];
        for(int i=0; i

결과:
11 월 29, 2019 10: 12: 14 오후 atomadder. test atomicLong 정보: value: 32000000, time: 645934343447 11 월 29, 2019 10: 12: 14 오후 atomadder. test atomicLong 정보: value: 32, 000, 000, time: 704, 913, 473 11 월 29, 2019 10: 12: 14 오후 atomadder. test 주요 정보2019 10: 12: 15 오후 atomadder. test longAdder 정보: value: 32, 000, 000, time: 337, 813, 303

좋은 웹페이지 즐겨찾기