`
kobe学java
  • 浏览: 258572 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
社区版块
存档分类
最新评论

java—atomic

    博客分类:
  • java
 
阅读更多

java—atomic

分类: Java考古学 英语技术词汇 49人阅读 评论(0) 收藏 举报
 
J2SE 5.0提供了一组atomic class来帮助我们简化同步处理。基本工作原理是使用了同步synchronized的方法实现了对一个long, integer, 对象的增、减、赋值(更新)操作. 比如对于++运算符AtomicInteger可以将它持有的integer 能够atomic 地递增。在需要访问两个或两个以上 atomic变量的程序代码(或者是对单一的atomic变量执行两个或两个以上的操作)通常都需要被synchronize以便两者的操作能够被当作是一个atomic的单元。 

对array atomic变量来说,一次只有一个索引变量可以变动,并没有功能可以对整个array做atomic化的变动。 

关于Atomic的几个方法 
getAndSet() : 设置新值,返回旧值. 
compareAndSet(expectedValue, newValue) : 如果当前值(current value)等于期待的值(expectedValue), 则原子地更新指定值为新值(newValue), 如果更新成功,返回true, 否则返回false, 换句话可以这样说: 将原子变量设置为新的值, 但是如果从我上次看到的这个变量之后到现在被其他线程修改了(和我期望看到的值不符), 那么更新失败 

从effective java (2)中拿来的一个关于AtomicReference的一个例子: 
Java代码 
Java代码 复制代码 收藏代码
  1. public class AtomicTest {      
  2.     private int x, y;      
  3.      
  4.     private enum State {      
  5.         NEW, INITIALIZING, INITIALIZED      
  6.     };      
  7.      
  8.     private final AtomicReference<State> init = new AtomicReference<State>(State.NEW);      
  9.           
  10.     public AtomicTest() {      
  11.     }      
  12.           
  13.     public AtomicTest(int x, int y) {      
  14.         initialize(x, y);      
  15.     }      
  16.      
  17.     private void initialize(int x, int y) {      
  18.         if (!init.compareAndSet(State.NEW, State.INITIALIZING)) {      
  19.             throw new IllegalStateException("initialize is error");      
  20.         }      
  21.         this.x = x;      
  22.         this.y = y;      
  23.         init.set(State.INITIALIZED);      
  24.     }      
  25.      
  26.     public int getX() {      
  27.         checkInit();      
  28.         return x;      
  29.     }      
  30.      
  31.     public int getY() {      
  32.         checkInit();      
  33.         return y;      
  34.     }      
  35.           
  36.     private void checkInit() {      
  37.         if (init.get() == State.INITIALIZED) {      
  38.             throw new IllegalStateException("uninitialized");      
  39.         }      
  40.     }      
  41.           
  42. }     
  43.   
  44. public class AtomicTest {   
  45.     private int x, y;   
  46.   
  47.     private enum State {   
  48.         NEW, INITIALIZING, INITIALIZED   
  49.     };   
  50.   
  51.     private final AtomicReference<State> init = new AtomicReference<State>(State.NEW);   
  52.        
  53.     public AtomicTest() {   
  54.     }   
  55.        
  56.     public AtomicTest(int x, int y) {   
  57.         initialize(x, y);   
  58.     }   
  59.   
  60.     private void initialize(int x, int y) {   
  61.         if (!init.compareAndSet(State.NEW, State.INITIALIZING)) {   
  62.             throw new IllegalStateException("initialize is error");   
  63.         }   
  64.         this.x = x;   
  65.         this.y = y;   
  66.         init.set(State.INITIALIZED);   
  67.     }   
  68.   
  69.     public int getX() {   
  70.         checkInit();   
  71.         return x;   
  72.     }   
  73.   
  74.     public int getY() {   
  75.         checkInit();   
  76.         return y;   
  77.     }   
  78.        
  79.     private void checkInit() {   
  80.         if (init.get() == State.INITIALIZED) {   
  81.             throw new IllegalStateException("uninitialized");   
  82.         }   
  83.     }   
  84.        
  85. }  
[java] view plaincopy
  1. public class AtomicTest {     
  2.     private int x, y;     
  3.     
  4.     private enum State {     
  5.         NEW, INITIALIZING, INITIALIZED     
  6.     };     
  7.     
  8.     private final AtomicReference<State> init = new AtomicReference<State>(State.NEW);     
  9.          
  10.     public AtomicTest() {     
  11.     }     
  12.          
  13.     public AtomicTest(int x, int y) {     
  14.         initialize(x, y);     
  15.     }     
  16.     
  17.     private void initialize(int x, int y) {     
  18.         if (!init.compareAndSet(State.NEW, State.INITIALIZING)) {     
  19.             throw new IllegalStateException("initialize is error");     
  20.         }     
  21.         this.x = x;     
  22.         this.y = y;     
  23.         init.set(State.INITIALIZED);     
  24.     }     
  25.     
  26.     public int getX() {     
  27.         checkInit();     
  28.         return x;     
  29.     }     
  30.     
  31.     public int getY() {     
  32.         checkInit();     
  33.         return y;     
  34.     }     
  35.          
  36.     private void checkInit() {     
  37.         if (init.get() == State.INITIALIZED) {     
  38.             throw new IllegalStateException("uninitialized");     
  39.         }     
  40.     }     
  41.          
  42. }    
  43.   
  44. public class AtomicTest {  
  45.     private int x, y;  
  46.   
  47.     private enum State {  
  48.         NEW, INITIALIZING, INITIALIZED  
  49.     };  
  50.   
  51.     private final AtomicReference<State> init = new AtomicReference<State>(State.NEW);  
  52.       
  53.     public AtomicTest() {  
  54.     }  
  55.       
  56.     public AtomicTest(int x, int y) {  
  57.         initialize(x, y);  
  58.     }  
  59.   
  60.     private void initialize(int x, int y) {  
  61.         if (!init.compareAndSet(State.NEW, State.INITIALIZING)) {  
  62.             throw new IllegalStateException("initialize is error");  
  63.         }  
  64.         this.x = x;  
  65.         this.y = y;  
  66.         init.set(State.INITIALIZED);  
  67.     }  
  68.   
  69.     public int getX() {  
  70.         checkInit();  
  71.         return x;  
  72.     }  
  73.   
  74.     public int getY() {  
  75.         checkInit();  
  76.         return y;  
  77.     }  
  78.       
  79.     private void checkInit() {  
  80.         if (init.get() == State.INITIALIZED) {  
  81.             throw new IllegalStateException("uninitialized");  
  82.         }  
  83.     }  
  84.       
  85. }  


上面的例子比较容易懂, 不过貌似没什么价值, 而在实际的应用中, 我们一般采用下面的方式来使用atomic class: 
Java代码 
Java代码 复制代码 收藏代码
  1. public class CounterTest {      
  2.     AtomicInteger counter = new AtomicInteger(0);      
  3.      
  4.     public int count() {      
  5.         int result;      
  6.         boolean flag;      
  7.         do {      
  8.             result = counter.get();      
  9.             // 断点      
  10.             // 单线程下, compareAndSet返回永远为true,      
  11.             // 多线程下, 在与result进行compare时, counter可能被其他线程set了新值, 这时需要重新再取一遍再比较,      
  12.             // 如果还是没有拿到最新的值, 则一直循环下去, 直到拿到最新的那个值      
  13.             flag = counter.compareAndSet(result, result + 1);      
  14.         } while (!flag);      
  15.      
  16.         return result;      
  17.     }      
  18.      
  19.     public static void main(String[] args) {      
  20.         final CounterTest c = new CounterTest();      
  21.         new Thread() {      
  22.             @Override     
  23.             public void run() {      
  24.                 c.count();      
  25.             }      
  26.         }.start();      
  27.      
  28.         new Thread() {      
  29.             @Override     
  30.             public void run() {      
  31.                 c.count();      
  32.             }      
  33.         }.start();      
  34.      
  35.         new Thread() {      
  36.             @Override     
  37.             public void run() {      
  38.                 c.count();      
  39.             }      
  40.         }.start();      
  41.     }      
  42. }     
  43.   
  44. public class CounterTest {   
  45.     AtomicInteger counter = new AtomicInteger(0);   
  46.   
  47.     public int count() {   
  48.         int result;   
  49.         boolean flag;   
  50.         do {   
  51.             result = counter.get();   
  52.             // 断点   
  53.             // 单线程下, compareAndSet返回永远为true,   
  54.             // 多线程下, 在与result进行compare时, counter可能被其他线程set了新值, 这时需要重新再取一遍再比较,   
  55.             // 如果还是没有拿到最新的值, 则一直循环下去, 直到拿到最新的那个值   
  56.             flag = counter.compareAndSet(result, result + 1);   
  57.         } while (!flag);   
  58.   
  59.         return result;   
  60.     }   
  61.   
  62.     public static void main(String[] args) {   
  63.         final CounterTest c = new CounterTest();   
  64.         new Thread() {   
  65.             @Override  
  66.             public void run() {   
  67.                 c.count();   
  68.             }   
  69.         }.start();   
  70.   
  71.         new Thread() {   
  72.             @Override  
  73.             public void run() {   
  74.                 c.count();   
  75.             }   
  76.         }.start();   
  77.   
  78.         new Thread() {   
  79.             @Override  
  80.             public void run() {   
  81.                 c.count();   
  82.             }   
  83.         }.start();   
  84.     }   
  85. }  
[java] view plaincopy
  1. public class CounterTest {     
  2.     AtomicInteger counter = new AtomicInteger(0);     
  3.     
  4.     public int count() {     
  5.         int result;     
  6.         boolean flag;     
  7.         do {     
  8.             result = counter.get();     
  9.             // 断点     
  10.             // 单线程下, compareAndSet返回永远为true,     
  11.             // 多线程下, 在与result进行compare时, counter可能被其他线程set了新值, 这时需要重新再取一遍再比较,     
  12.             // 如果还是没有拿到最新的值, 则一直循环下去, 直到拿到最新的那个值     
  13.             flag = counter.compareAndSet(result, result + 1);     
  14.         } while (!flag);     
  15.     
  16.         return result;     
  17.     }     
  18.     
  19.     public static void main(String[] args) {     
  20.         final CounterTest c = new CounterTest();     
  21.         new Thread() {     
  22.             @Override    
  23.             public void run() {     
  24.                 c.count();     
  25.             }     
  26.         }.start();     
  27.     
  28.         new Thread() {     
  29.             @Override    
  30.             public void run() {     
  31.                 c.count();     
  32.             }     
  33.         }.start();     
  34.     
  35.         new Thread() {     
  36.             @Override    
  37.             public void run() {     
  38.                 c.count();     
  39.             }     
  40.         }.start();     
  41.     }     
  42. }    
  43.   
  44. public class CounterTest {  
  45.     AtomicInteger counter = new AtomicInteger(0);  
  46.   
  47.     public int count() {  
  48.         int result;  
  49.         boolean flag;  
  50.         do {  
  51.             result = counter.get();  
  52.             // 断点  
  53.             // 单线程下, compareAndSet返回永远为true,  
  54.             // 多线程下, 在与result进行compare时, counter可能被其他线程set了新值, 这时需要重新再取一遍再比较,  
  55.             // 如果还是没有拿到最新的值, 则一直循环下去, 直到拿到最新的那个值  
  56.             flag = counter.compareAndSet(result, result + 1);  
  57.         } while (!flag);  
  58.   
  59.         return result;  
  60.     }  
  61.   
  62.     public static void main(String[] args) {  
  63.         final CounterTest c = new CounterTest();  
  64.         new Thread() {  
  65.             @Override  
  66.             public void run() {  
  67.                 c.count();  
  68.             }  
  69.         }.start();  
  70.   
  71.         new Thread() {  
  72.             @Override  
  73.             public void run() {  
  74.                 c.count();  
  75.             }  
  76.         }.start();  
  77.   
  78.         new Thread() {  
  79.             @Override  
  80.             public void run() {  
  81.                 c.count();  
  82.             }  
  83.         }.start();  
  84.     }  
  85. }  

类似i++这样的"读-改-写"复合操作(在一个操作序列中, 后一个操作依赖前一次操作的结果), 在多线程并发处理的时候会出现问题, 因为可能一个线程修改了变量, 而另一个线程没有察觉到这样变化, 当使用原子变量之后, 则将一系列的复合操作合并为一个原子操作,从而避免这种问题, i++=>i.incrementAndGet() 
原子变量只能保证对一个变量的操作是原子的, 如果有多个原子变量之间存在依赖的复合操作, 也不可能是安全的, 另外一种情况是要将更多的复合操作作为一个原子操作, 则需要使用synchronized将要作为原子操作的语句包围起来. 因为涉及到可变的共享变量(类实例成员变量)才会涉及到同步, 否则不必使用synchronized 

 

分享到:
评论

相关推荐

    Java Atomic类及线程同步新机制原理解析

    "Java Atomic类及线程同步新机制原理解析" Java Atomic类 Java Atomic类是Java并发编程中的一种机制,用于实现原子操作。Atomic类提供了一种无锁的方式来实现线程安全的操作。Atomic类使用CAS(Compare-And-Swap)...

    深入了解Java atomic原子类的使用方法和原理

    Java Atomic原子类的使用方法和原理 Java Atomic原子类是Java中的一种多线程安全机制,用于在多线程环境中保证变量的原子性操作。Atomic原子类的出现解决了多线程环境下变量操作的安全问题,使得开发者可以更方便地...

    Java多线程atomic包介绍及使用方法

    Java 多线程 atomic 包介绍及使用方法 Java 多线程 atomic 包是 Java 并发编程中的一种重要工具,自从 JDK 1.5 开始,Java 就提供了 java.util.concurrent.atomic 包,方便程序员在多线程环境下,无锁的进行原子...

    浅谈Java中的atomic包实现原理及应用

    Java中的atomic包实现原理及应用 本文主要介绍了Java中的atomic包实现原理及应用,涉及Atomic在硬件上的支持、Atomic包简介及源码分析等相关内容。 Atomic在硬件上的支持 在单处理器系统中,能够在单条指令中...

    探秘Java并发:Atomic&amp;Unsafe的强大魔法

    本文深入解析Java并发编程中的两个关键类:Atomic和Unsafe。这些类在提高Java并发操作的效率和安全性方面扮演着至关重要的角色。原子操作的核心:原子操作是不可分割的操作单元,确保数据的一致性和完整性。Java通过...

    2022最新字节面试题

    10. Java Atomic 类:Atomic 类用于原子操作,保证可见性。 11. Java 中的多线程:Java 中有多种线程模型,如 Thread、Runnable 等。 操作系统 12. 操作系统基础知识:操作系统是管理计算机硬件资源的软件,包括...

    java线程-Atomic的含义及示例_.docx

    ### Java线程:Atomic的含义及示例 #### Atomic概念详解 在计算机科学领域,“Atomic”一词源自希腊语“不可分割”的意思,在编程上下文中则指代的是一个操作或一组操作不能被其他操作所打断的过程。如果一个操作...

    JAVA_API1.6文档(中文)

    java.util.concurrent.atomic 类的小工具包,支持在单个变量上解除锁的线程安全编程。 java.util.concurrent.locks 为锁和等待条件提供一个框架的接口和类,它不同于内置同步和监视器。 java.util.jar 提供读写 ...

    atomic-mock-free-tier:模拟用户功能以匹配免费原子层上的用户功能

    "atomic-mock-free-tier"项目就是这样一个专注于模拟用户功能的工具,它旨在帮助开发者在免费的原子层上验证和测试他们的应用程序。这个项目的核心在于提供一个无原子(即不依赖于特定原子操作)的模拟环境,使得...

    Java并发编程包中atomic的实现原理示例详解

    Java并发编程包中atomic的实现原理示例详解 Java并发编程包中atomic的实现原理示例详解,主要是讲解Java并发编程包中atomic的实现原理的示例代码。下面将详细地介绍atomic的实现原理。 一、线程安全 线程安全是指...

    Java多线程Atomic包操作原子变量与原子类详解

    Java的`Atomic`包是Java多线程编程中一个重要的工具,它提供了对原子变量的操作,确保了在并发环境下的数据一致性。在多线程环境中,原子性是至关重要的,这意味着一个操作要么完整执行,要么不执行,不会被其他线程...

    java1.8-api

    6. **并发更新类**:如`ConcurrentHashMap`和`Atomic*`系列类的增强,使得在多线程环境下进行数据同步更加高效和安全。 7. **Nashorn JavaScript引擎**:Java 1.8集成了JavaScript引擎,允许Java程序直接执行...

    Java 1.6 API 中文 New

    java.util.concurrent.atomic 类的小工具包,支持在单个变量上解除锁的线程安全编程。 java.util.concurrent.locks 为锁和等待条件提供一个框架的接口和类,它不同于内置同步和监视器。 java.util.jar 提供读写 JAR ...

    Java8 英文文档 API .zip

    - `java.util.concurrent.atomic.Atomic*`包中添加了新的枚举类型,如`AtomicIntegerArray`和`AtomicLongArray`,提供了原子操作的数组类型。 - `java.util.Map`接口增加了`of()`, `ofEntries()`等静态方法,方便...

    java外包笔试题两套.zip

    3. **并发编程**:深入理解线程池,原子性操作(Atomic类),以及Lock接口的使用。 4. **Spring框架**:依赖注入、AOP(面向切面编程)的概念及实现,Spring Boot、Spring MVC的应用。 5. **数据库操作**:SQL查询...

    Java并发编程实践(java concurrency in practice)pdf (java多线程总结.ppt)

    8. **原子变量**:`java.util.concurrent.atomic`包中的原子变量类如`AtomicInteger`和`AtomicReference`,提供了无锁编程的支持,可以在不使用同步的情况下实现线程安全。 9. **并发设计模式**:书中涵盖了如生产...

    sonar-JAVA检查规则指南.docx

    在 Java 中,Atomic 类(如 AtomicInteger 和 AtomicLong)扩展了 Number 类,但它们与 Integer 和 Long 不同。因此,不能使用“equals()”方法测试“Atomic”类的值,而应使用“get()”方法获取值然后进行比较。 2...

    java并发编程内部分享PPT

    Java提供了多种同步工具,如synchronized关键字、 volatile变量、java.util.concurrent包下的Lock接口(如ReentrantLock)以及Atomic类等。synchronized提供了互斥访问,保证同一时刻只有一个线程执行特定代码段。...

    Java 并发核心编程

    4. **Atomic Types**: `java.util.concurrent.atomic`包提供了一组原子类,用于执行无锁原子操作,如`AtomicInteger`、`AtomicLong`等。 #### 四、并发集合类 Java平台提供了专门设计用于并发环境下的集合类,以...

Global site tag (gtag.js) - Google Analytics