Java™ Platform
Standard Ed. 7
 
java.util.concurrent.atomic

Class AtomicInteger

  • All Implemented Interfaces:
    Serializable

    public class AtomicInteger
    extends Number
    implements Serializable
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specification for description of the properties of atomic variables. An AtomicInteger is used in applications such as atomically incremented counters, and cannot be used as a replacement for an Integer. However, this class does extend Number to allow uniform access by tools and utilities that deal with numerically-based classes.
    Since:
    1.5
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor and Description
      AtomicInteger()

      Creates a new AtomicInteger with initial value 0.
      AtomicInteger(int initialValue)

      Creates a new AtomicInteger with the given initial value.
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      int addAndGet(int delta)

      Atomically adds the given value to the current value.
      boolean compareAndSet(int expect, int update)

      Atomically sets the value to the given updated value if the current value == the expected value.
      int decrementAndGet()

      Atomically decrements by one the current value.
      double doubleValue()

      Returns the value of the specified number as a double.
      float floatValue()

      Returns the value of the specified number as a float.
      int get()

      Gets the current value.
      int getAndAdd(int delta)

      Atomically adds the given value to the current value.
      int getAndDecrement()

      Atomically decrements by one the current value.
      int getAndIncrement()

      Atomically increments by one the current value.
      int getAndSet(int newValue)

      Atomically sets to the given value and returns the old value.
      int incrementAndGet()

      Atomically increments by one the current value.
      int intValue()

      Returns the value of the specified number as an int.
      void lazySet(int newValue)

      Eventually sets to the given value.
      long longValue()

      Returns the value of the specified number as a long.
      void set(int newValue)

      Sets to the given value.
      String toString()

      Returns the String representation of the current value.
      boolean weakCompareAndSet(int expect, int update)

      Atomically sets the value to the given updated value if the current value == the expected value.
    • Constructor Detail

      • AtomicInteger

        public AtomicInteger(int initialValue)
        Creates a new AtomicInteger with the given initial value.
        Parameters:
        initialValue - the initial value
      • AtomicInteger

        public AtomicInteger()
        Creates a new AtomicInteger with initial value 0.
    • Method Detail

      • get

        public final int get()
        Gets the current value.
        Returns:
        the current value
      • set

        public final void set(int newValue)
        Sets to the given value.
        Parameters:
        newValue - the new value
      • lazySet

        public final void lazySet(int newValue)
        Eventually sets to the given value.
        Parameters:
        newValue - the new value
        Since:
        1.6
      • getAndSet

        public final int getAndSet(int newValue)
        Atomically sets to the given value and returns the old value.
        Parameters:
        newValue - the new value
        Returns:
        the previous value
      • compareAndSet

        public final boolean compareAndSet(int expect,
        int update)
        Atomically sets the value to the given updated value if the current value == the expected value.
        Parameters:
        expect - the expected value
        update - the new value
        Returns:
        true if successful. False return indicates that the actual value was not equal to the expected value.
      • weakCompareAndSet

        public final boolean weakCompareAndSet(int expect,
        int update)
        Atomically sets the value to the given updated value if the current value == the expected value.

        May fail spuriously and does not provide ordering guarantees, so is only rarely an appropriate alternative to compareAndSet.

        Parameters:
        expect - the expected value
        update - the new value
        Returns:
        true if successful.
      • getAndIncrement

        public final int getAndIncrement()
        Atomically increments by one the current value.
        Returns:
        the previous value
      • getAndDecrement

        public final int getAndDecrement()
        Atomically decrements by one the current value.
        Returns:
        the previous value
      • getAndAdd

        public final int getAndAdd(int delta)
        Atomically adds the given value to the current value.
        Parameters:
        delta - the value to add
        Returns:
        the previous value
      • incrementAndGet

        public final int incrementAndGet()
        Atomically increments by one the current value.
        Returns:
        the updated value
      • decrementAndGet

        public final int decrementAndGet()
        Atomically decrements by one the current value.
        Returns:
        the updated value
      • addAndGet

        public final int addAndGet(int delta)
        Atomically adds the given value to the current value.
        Parameters:
        delta - the value to add
        Returns:
        the updated value
      • toString

        public String toString()
        Returns the String representation of the current value.
        Overrides:
        toString in class Object
        Returns:
        the String representation of the current value.
      • intValue

        public int intValue()
        Description copied from class: Number
        Returns the value of the specified number as an int. This may involve rounding or truncation.
        Specified by:
        intValue in class Number
        Returns:
        the numeric value represented by this object after conversion to type int.
      • longValue

        public long longValue()
        Description copied from class: Number
        Returns the value of the specified number as a long. This may involve rounding or truncation.
        Specified by:
        longValue in class Number
        Returns:
        the numeric value represented by this object after conversion to type long.
      • floatValue

        public float floatValue()
        Description copied from class: Number
        Returns the value of the specified number as a float. This may involve rounding.
        Specified by:
        floatValue in class Number
        Returns:
        the numeric value represented by this object after conversion to type float.
      • doubleValue

        public double doubleValue()
        Description copied from class: Number
        Returns the value of the specified number as a double. This may involve rounding.
        Specified by:
        doubleValue in class Number
        Returns:
        the numeric value represented by this object after conversion to type double.
Java™ Platform
Standard Ed. 7
 

Submit a bug or feature 
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2018, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.

Class AtomicInteger的更多相关文章

  1. AtomicInteger源码注释

    AtomicInteger源码 在java.util.concurrent.atomic包下提供了大量的原子类,这里以AtomicInteger源码为例,添加了一些注释,个人理解,供参考: 其中比较重 ...

  2. java API:AtomicInteger

    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati ...

  3. AtomicInteger

    原子量和普通变量相比,主要体现在读写的线程安全上.对原子量的写是原子的,由CAS操作保证原子性.对原子量的读可以读到最新值,由volatile关键字来保证可见性. ublic class Atomic ...

  4. AtomicInteger简介

    这个类真的非常实用,更重要的是 它确实非常简单: 附上自己的代码,可以自己试试: AtomicInteger,一个提供原子操作的Integer的类.在Java语言中,++i和i++操作并不是线程安全的 ...

  5. Java AtomicInteger

    AtomicInteger,一个提供原子操作的Integer的类.在Java语言中,++i和i++操作并不是线程安全的,在使用的时候,不可避免的会用到synchronized关键字.而AtomicIn ...

  6. AtomicInteger源码分析

    问题背景 最近在看LinkedBlockingQueue看到了其中的count使用AtomicInteger修饰,之前也看过AtomicInteger的一些解释,也是似懂非懂的,今天深入的了解了其实现 ...

  7. AtomicInteger源码分析——基于CAS的乐观锁实现

    AtomicInteger源码分析——基于CAS的乐观锁实现 1. 悲观锁与乐观锁 我们都知道,cpu是时分复用的,也就是把cpu的时间片,分配给不同的thread/process轮流执行,时间片与时 ...

  8. AtomicInteger类保证线程安全的用法

    J2SE 5.0提供了一组atomic class来帮助我们简化同步处理.基本工作原理是使用了同步synchronized的方法实现了对一个long, integer, 对象的增.减.赋值(更新)操作 ...

  9. java多线程之AtomicInteger

    AtomicInteger原子操作实现同步 package Thread.Common; import java.util.Timer; import java.util.TimerTask; imp ...

  10. Java自增原子性问题(测试Volatile、AtomicInteger)

    这是美团一面面试官的一个问题,后来发现这是一道面试常见题,怪自己没有准备充分:i++;在多线程环境下是否存在问题?当时回答存在,接着问,那怎么解决?...好吧,我说加锁或者synchronized同步 ...

随机推荐

  1. 《node.js权威指南》读书笔记

    第一章 node.js介绍 非阻塞型I/O机制 当在访问数据库取得搜索结果的时候,在开始访问数据库之后,数据库返回结果之前,存在一段等待时间. 在传统的单线程处理机制中,在执行了访问数据库的代码之后, ...

  2. ASP.NET MVC概述及第一个MVC程序

    一.ASP.NET 概述        1. .NET Framework 与 ASP.NET                .NET Framework包含两个重要组件:.NET Framework ...

  3. IDLE提供的常用快捷键

    IDLE提供的常用快捷键 快捷键 说明 适用于 F1 打开Python帮助文档 Python文件窗口和shell窗口均可用 Alt+P 浏览历史命令(上一条) 仅Python Shell窗口可用 Al ...

  4. c/c++ 标准库 迭代器(iterator)

    c/c++ 标准库 迭代器 begin和end运算符返回的具体类型由对象是否是常量决定,如果对象是常量,begin和end返回const_iterator:如果对象不是常量,返回iteraotor 1 ...

  5. irc 关键操作

    IRC 客户端: Textual 5 HexChat  IRC 用户密码常用命令: 用户密码: 忘记密码 如果太长时间没登录IRC,难免会忘记密码,那IRC有重置密码的功能吗?当然有,不过也是通过命令 ...

  6. centos下mysql授予权限提示ERROR 1133 (42000): Can't find any matching row in the user table

    错误: 给mysql对应的用户授予权限的时候提示报错: 解决方法: 后面才知道原来是同事这边新增了用户没有flush grant all privileges on *.* to 'user'@'%' ...

  7. docker容器持久化卷讲解

    docker容器自身存储数据效率比较低,因此我们为了提高磁盘IO的性能等,需要在容器中挂载一个外部存储设备.关于讲解大致如下: Docker中的数据可以存储在类似于虚拟机磁盘的介质中,在Docker中 ...

  8. 4.12Python数据处理篇之Matplotlib系列(十二)---绘图风格的介绍

    目录 目录 前言 (一)不同风格 1.说明: 2.使用: 3.代码使用: (二)例子演示 1.dark_background 2.bmh 3.fivethirtyeight 4.ggplot 5.gr ...

  9. [JS]js中判断变量类型函数typeof的用法汇总[转]

    1.作用: typeof 运算符返回一个用来表示表达式的数据类型的字符串.  可能的字符串有:"number"."string"."boolean&q ...

  10. E. Superhero Battle Codeforces Round #547 (Div. 3) 思维题

    E. Superhero Battle time limit per test 2 seconds memory limit per test 256 megabytes input standard ...