中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

AtomicInteger類如何在Java項目中使用

發布時間:2020-12-08 16:14:13 來源:億速云 閱讀:149 作者:Leah 欄目:編程語言

這篇文章給大家介紹AtomicInteger類如何在Java項目中使用,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

首先看兩段代碼,一段是Integer的,一段是AtomicInteger的,為以下:

public class Sample1 {
  private static Integer count = 0;
  synchronized public static void increment() {
    count++;
  }
}

以下是AtomicInteger的:

public class Sample2 {
  private static AtomicInteger count = new AtomicInteger(0);
  public static void increment() {
    count.getAndIncrement();
  }
}

以上兩段代碼,在使用Integer的時候,必須加上synchronized保證不會出現并發線程同時訪問的情況,而在AtomicInteger中卻不用加上synchronized,在這里AtomicInteger是提供原子操作的,下面就對這進行相應的介紹。

AtomicInteger介紹

AtomicInteger是一個提供原子操作的Integer類,通過線程安全的方式操作加減。

AtomicInteger使用場景

AtomicInteger提供原子操作來進行Integer的使用,因此十分適合高并發情況下的使用。

AtomicInteger源碼部分講解

public class AtomicInteger extends Number implements java.io.Serializable {
  private static final long serialVersionUID = 6214790243416807050L;
  // setup to use Unsafe.compareAndSwapInt for updates
  private static final Unsafe unsafe = Unsafe.getUnsafe();
  private static final long valueOffset;
  static {
    try {
      valueOffset = unsafe.objectFieldOffset
        (AtomicInteger.class.getDeclaredField("value"));
    } catch (Exception ex) { throw new Error(ex); }
  }
  private volatile int value;

以上為AtomicInteger中的部分源碼,在這里說下其中的value,這里value使用了volatile關鍵字,volatile在這里可以做到的作用是使得多個線程可以共享變量,但是問題在于使用volatile將使得VM優化失去作用,導致效率較低,所以要在必要的時候使用,因此AtomicInteger類不要隨意使用,要在使用場景下使用。

AtomicInteger實例使用

以下就是在多線程情況下,使用AtomicInteger的一個實例,這段代碼是借用IT宅中的一段代碼。

 public class AtomicTest {
  static long randomTime() {
    return (long) (Math.random() * 1000);
  }
  public static void main(String[] args) {
    // 阻塞隊列,能容納100個文件
    final BlockingQueue<File> queue = new LinkedBlockingQueue<File>(100);
    // 線程池
    final ExecutorService exec = Executors.newFixedThreadPool(5);
    final File root = new File("D:\\ISO");
    // 完成標志
    final File exitFile = new File("");
    // 原子整型,讀個數
    // AtomicInteger可以在并發情況下達到原子化更新,避免使用了synchronized,而且性能非常高。
    final AtomicInteger rc = new AtomicInteger();
    // 原子整型,寫個數
    final AtomicInteger wc = new AtomicInteger();
    // 讀線程
    Runnable read = new Runnable() {
      public void run() {
        scanFile(root);
        scanFile(exitFile);
      }
      public void scanFile(File file) {
        if (file.isDirectory()) {
          File[] files = file.listFiles(new FileFilter() {
            public boolean accept(File pathname) {
              return pathname.isDirectory() || pathname.getPath().endsWith(".iso");
            }
          });
          for (File one : files)
            scanFile(one);
        } else {
          try {
            // 原子整型的incrementAndGet方法,以原子方式將當前值加 1,返回更新的值
            int index = rc.incrementAndGet();
            System.out.println("Read0: " + index + " " + file.getPath());
            // 添加到阻塞隊列中
            queue.put(file);
          } catch (InterruptedException e) {
          }
        }
      }
    };
    // submit方法提交一個 Runnable 任務用于執行,并返回一個表示該任務的 Future。
    exec.submit(read);
    // 四個寫線程
    for (int index = 0; index < 4; index++) {
      // write thread
      final int num = index;
      Runnable write = new Runnable() {
        String threadName = "Write" + num;
        public void run() {
          while (true) {
            try {
              Thread.sleep(randomTime());
              // 原子整型的incrementAndGet方法,以原子方式將當前值加 1,返回更新的值
              int index = wc.incrementAndGet();
              // 獲取并移除此隊列的頭部,在元素變得可用之前一直等待(如果有必要)。
              File file = queue.take();
              // 隊列已經無對象
              if (file == exitFile) {
                // 再次添加"標志",以讓其他線程正常退出
                queue.put(exitFile);
                break;
              }
              System.out.println(threadName + ": " + index + " " + file.getPath());
            } catch (InterruptedException e) {
            }
          }
        }
      };
      exec.submit(write);
    }
    exec.shutdown();
  }
}

AtomicInteger使用總結

AtomicInteger是在使用非阻塞算法實現并發控制,在一些高并發程序中非常適合,但并不能每一種場景都適合,不同場景要使用使用不同的數值類。

關于AtomicInteger類如何在Java項目中使用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

河源市| 蓝田县| 庆安县| 清镇市| 青神县| 荆州市| 乐清市| 离岛区| 淮阳县| 肃南| 镇安县| 龙川县| 海淀区| 大冶市| 青海省| 开封市| 开阳县| 咸阳市| 玉门市| 八宿县| 安新县| 扎鲁特旗| 阜平县| 石台县| 呼伦贝尔市| 上蔡县| 襄城县| 塔河县| 准格尔旗| 岳普湖县| 开远市| 涪陵区| 锡林郭勒盟| 谷城县| 锡林浩特市| 五原县| 开平市| 启东市| 攀枝花市| 鸡东县| 柳江县|