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 java.lang.Integer
. However, this class does extend Number
to allow uniform access by tools and utilities that deal with numerically-based classes.
相关文章
- java API:AtomicInteger
- java程序员保持天天快乐的6个习惯
- Java课程设计——象棋(201521123042 姚佳希)
- 76. Minimum Window Substring (JAVA)
- HBase 详细API操作
- 手机端可以和PC端同时在线-java QRCode 实现网站扫码登录(即支持同帐号多设备同时登录)
- Java compiler level does not match the version of the installed Java project facet问题解决
- java插入字符串
- Java中@SuppressWarnings("unchecked")的作用
- lru cache java