快速业务通道

Java线程:新特征-原子量 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-19

Java线程:新特征-原子量

时间:2011-02-20 leizhimin

所谓的原子量即操作变量的操作是“原子的”,该操作不可再分,因此是线程安全的。

为何要使用原子变量呢,原因是多个线程对单个变量操作也会引起一些问题。在Java5之前,可以通过volatile、synchronized关键字来解决并发访问的安全问题,但这样太麻烦。

Java5之后,专门提供了用来进行单变量多线程并发安全访问的工具包java.util.concurrent.atomic,其中的类也很简单。

下面给出一个反面例子(切勿模仿):

import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.atomic.AtomicLong; /** * Java线程:新特征-原子量 * * @author leizhimin  */ public class Test {          public static void main(String[] args) {                  ExecutorService pool = Executors.newFixedThreadPool(2);                  Runnable t1 = new MyRunnable("张三", 2000);                  Runnable t2 = new MyRunnable("李四", 3600);                  Runnable t3 = new MyRunnable("王五", 2700);                  Runnable t4 = new MyRunnable("老张", 600);                  Runnable t5 = new MyRunnable("老牛", 1300);                  Runnable t6 = new MyRunnable("胖子", 800);                  //执行各个线程                   pool.execute(t1);                  pool.execute(t2);                  pool.execute(t3);                  pool.execute(t4);                  pool.execute(t5);                  pool.execute(t6);                  //关闭线程池                   pool.shutdown();          } } class MyRunnable implements Runnable {          private static AtomicLong aLong = new AtomicLong(10000); //原子量,每个线程都可以自由操作          private String name; //操作人          private int x; //操作数额          MyRunnable(String name, int x) {                  this.name = name;                  this.x = x;          }          public void run() {                  System.out.println(name + "执行了" + x + ",当前余额:" + aLong.addAndGet(x));          } }

运行结果:

李四执行了3600,当前余额:13600 王五执行了2700,当前余额:16300 老张执行了600,当前余额:16900 老牛执行了1300,当前余额:18200 胖子执行了800,当前余额:19000 张三执行了2000,当前余额:21000 Process finished with exit code 0

张三执行了2000,当前余额:12000 王五执行了2700,当前余额:18300 老张执行了600,当前余额:18900 老牛执行了1300,当前余额:20200 胖子执行了800,当前余额:21000 李四执行了3600,当前余额:15600 Process finished with exit code 0

张三执行了2000,当前余额:12000 李四执行了3600,当前余

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号