文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

如何实现Java线程安全的计数器

2023-05-31 00:44

关注

这篇文章将为大家详细讲解有关如何实现Java线程安全的计数器,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

前几天工作中一段业务代码需要一个变量每天从1开始递增。为此自己简单的封装了一个线程安全的计数器,可以让一个变量每天从1开始递增。当然了,如果项目在运行中发生重启,即便日期还是当天,还是会从1开始重新计数。所以把计数器的值存储在数据库中会更靠谱,不过这不影响这段代码的价值,现在贴出来,供有需要的人参考。

package com.hikvision.cms.rvs.common.util;import java.text.SimpleDateFormat;import java.util.ArrayList;import java.util.Date;import java.util.List;import java.util.concurrent.CountDownLatch;import java.util.concurrent.atomic.AtomicInteger;import java.util.concurrent.atomic.AtomicReferenceFieldUpdater;public class CircularCounter {  private static final AtomicReferenceFieldUpdater<CircularCounter, AtomicInteger> valueUpdater =      AtomicReferenceFieldUpdater.newUpdater(CircularCounter.class, AtomicInteger.class, "value");  //保证内存可见性  private volatile String key;  //保证内存可见性  private volatile AtomicInteger value;  private static final String DATE_PATTERN = "yyyy-MM-dd";  public CircularCounter() {        this.key = getCurrentDateString() + "sssssssssss";    this.value = new AtomicInteger(0);  }    public Integer addAndGet() {    AtomicInteger oldValue = value;    AtomicInteger newInteger = new AtomicInteger(0);    int newVal = -1;    String newDateStr = getCurrentDateString();    //日期一致,计数器加1后返回    if (isDateEquals(newDateStr)) {      newVal = add(1);      return newVal;    }    //日期不一致,保证有一个线程重置技术器    reSet(oldValue, newInteger, newDateStr);    this.key = newDateStr;    //重置后加1返回    newVal = add(1);    return newVal;  }    public Integer get() {    return value.get();  }    private boolean isDateEquals(String newDateStr) {    String oldDateStr = key;    if (!isBlank(oldDateStr) && oldDateStr.equals(newDateStr)) {      return true;    }    return false;  }    private void reSet(AtomicInteger oldValue, AtomicInteger newValue, String newDateStr) {    if(valueUpdater.compareAndSet(this, oldValue, newValue)) {      System.out.println("线程" + Thread.currentThread().getName() + "发现日期发生变化");    }  }    private String getCurrentDateString() {    Date date = new Date();    String newDateStr = new SimpleDateFormat(DATE_PATTERN).format(date);    return newDateStr;  }    private int add(int increment) {    return value.addAndGet(increment);  }  public static boolean isBlank(CharSequence cs) {    int strLen;    if(cs != null && (strLen = cs.length()) != 0) {      for(int i = 0; i < strLen; ++i) {        if(!Character.isWhitespace(cs.charAt(i))) {          return false;        }      }      return true;    } else {      return true;    }  }  public static void test() {    CircularCounter c = new CircularCounter();    AtomicInteger count = new AtomicInteger(0);    List<Thread> li = new ArrayList<Thread>();    int size = 10;    CountDownLatch latch2 = new CountDownLatch(1);    CountDownLatch latch3 = new CountDownLatch(size);    for (int i = 0; i < size; i++) {      Thread t = new Thread(new CounterRunner(c, latch2, latch3, count), "thread-" + i);      li.add(t);      t.start();    }    System.out.println("start");    latch2.countDown();    try {      latch3.await();    } catch (InterruptedException e) {      e.printStackTrace();    }    System.out.println(count.get());    System.out.println(c.get());    if(count.get() == c.get()) {      System.out.println("该计数器是线程安全的!!!");    }  }  public static void main(String... args) {    for(int i = 0; i < 15; i++) {      test();    }  }}class CounterRunner implements Runnable {  private CircularCounter counter;  private CountDownLatch latch2;  private CountDownLatch latch3;  private AtomicInteger count;  public CounterRunner(CircularCounter counter, CountDownLatch latch2, CountDownLatch latch3, AtomicInteger count) {    this.latch2 = latch2;    this.latch3 = latch3;    this.counter = counter;    this.count = count;  }  @Override  public void run() {    try {      latch2.await();      System.out.println("****************");      for (int i = 0; i < 20; i++) {        counter.addAndGet();        count.addAndGet(1);      }      latch3.countDown();    } catch (InterruptedException e) {      e.printStackTrace();    }  }}

关于“如何实现Java线程安全的计数器”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯