序言:有了并发程序,可以同时做多件事情,但是两个或多个线程同时访问一个资源那么冲突就出现了。
示列一:资源冲突
当一个对象中的实例变量、静态字段、构成数组对象的元素被多个线程访问的时候,会出资源冲突的现象

  1. public class ExampleDemo {
  2. String str="sads";
  3. public void info(String s){
  4. str+=s;
  5. System.out.println(str);
  6. }
  7. public static void main(String[] args) {
  8. ExampleDemo demo = new ExampleDemo();
  9. new Thread(()->{
  10. demo.info("11");
  11. }).start();
  12. new Thread(()->{
  13. demo.info("22");
  14. }).start();
  15. }
  16. }

示列二:资源不冲突
但是一些方法参数、局部变量去被多个线程访问的时候却不会出现冲突的情况。

  1. public class ExampleDemo {
  2. String str="sads";
  3. public void info(String s){
  4. String str1="sas"+s;
  5. System.out.println(str1);
  6. }
  7. public static void main(String[] args) {
  8. ExampleDemo demo = new ExampleDemo();
  9. new Thread(()->{
  10. demo.info("11");
  11. }).start();
  12. new Thread(()->{
  13. demo.info("22");
  14. }).start();
  15. }
  16. }

不正确的访问资源:

  1. abstract public class IntGenerator {
  2. private volatile boolean canceled=false;
  3. public abstract int next();
  4. public void canceled(){
  5. canceled=true;
  6. }
  7. public boolean isCanceled(){
  8. return canceled;
  9. }
  10. }


该抽象类用来产生偶数。

  1. public class EvenChecker implements Runnable {
  2. private IntGenerator intGenerator;
  3. private final int id;
  4. EvenChecker(IntGenerator g,int i){
  5. intGenerator=g;
  6. id=i;
  7. }
  8. @Override
  9. public void run() {
  10. while (!intGenerator.isCanceled()){
  11. int val =intGenerator.next();
  12. if (val%2!=0){
  13. System.out.println(val+"不是偶数");
  14. intGenerator.canceled();
  15. }
  16. }
  17. }
  18. public static void test(IntGenerator gp,int count){
  19. System.out.println("Press Control-C to exit");
  20. ExecutorService service = Executors.newCachedThreadPool();
  21. for (int i = 0; i <count ; i++) {
  22. service.execute(new EvenChecker(gp,i));
  23. }
  24. service.shutdown();
  25. }
  26. public static void test(IntGenerator gp){
  27. test(gp,10);
  28. }
  29. }

该任务用来检查偶数的正确性,如果不是偶数,则改循环的条件来结束任务。

  1. public class EvenGenerator extends IntGenerator {
  2. private int currentEventValue=0;
  3. @Override
  4. public int next() {
  5. ++currentEventValue;
  6. ++currentEventValue;
  7. return currentEventValue;
  8. }
  9. public static void main(String[] args) {
  10. EvenChecker.test(new EvenGenerator());
  11. }
  12. }
  13. 3467不是偶数
  14. 3473不是偶数
  15. 3469不是偶数
  16. 3471不是偶数

两次的++操作,一定是偶数,但是结果却出乎意料。我们在使用线程的时候,不知道一个线程会在什么时间运行,又因为在java中++的操作不是原子性的,很容易导致线程被挂起。所以当一个任务执行完第一个++之后,可能另一个任务已经带着这个数组返回了。所以才会产生非偶数。

一:解决共享资源冲突(synchronized):

  1. 上面列子中,几个线程访问同一个资源,可能一个线程刚把数字变为奇数,另一个线程已经带着这个数字返回了。这正是并发程序中的共享资源问题。所以需要一种方式,来防止两个任务同时访问一个资源。防止这个问题就是在一个任务执行的时候为其加上锁。

1.synchronized:

java中提供了关键字synchronized,为防止资源冲突提供了支持。 当任务要执行被synchronized关键字保护的代码片段时候,它将检查锁是否可用,然后获取锁,执行代码,释放锁。
注意:如果一个对象同一个实例中的synchronized 方法被一个线程抢占,则该线程释放锁之前,其他线程无法调用synchronized方法

  1. public class SynchronizedDemo {
  2. public synchronized void tese() {
  3. System.out.println("进入方法test()");
  4. try {
  5. TimeUnit.SECONDS.sleep(20);
  6. } catch (InterruptedException e) {
  7. e.printStackTrace();
  8. }
  9. System.out.println("退出该方法");
  10. }
  11. public synchronized void info() {
  12. System.out.println("进入方法info");
  13. System.out.println("退出方法info");
  14. }
  15. public static void main(String[] args) {
  16. final SynchronizedDemo demo = new SynchronizedDemo();
  17. final SynchronizedDemo demo2 = new SynchronizedDemo();
  18. final Thread thread = new Thread(() -> {
  19. demo.tese();
  20. });
  21. final Thread thread2 = new Thread(() -> {
  22. demo2.info();
  23. });
  24. thread.start();
  25. thread2.start();
  26. }
  27. }

示列:同步控制EvenGenertor:
同步:一个方法访问,另一个方法不能访问

  1. public class EvenGenerator extends IntGenerator {
  2. private int currentEventValue=0;
  3. @Override
  4. public synchronized int next() {
  5. ++currentEventValue;
  6. ++currentEventValue;
  7. return currentEventValue;
  8. }
  9. public static void main(String[] args) {
  10. EvenChecker.test(new EvenGenerator());
  11. }
  12. }
  1. 这样任何时刻就只有一个任务执行next方法(),数字也一直时偶数了<br />**①:对象锁:**形如方法锁和同步代码块 (此时的锁针对同一个实例有用)
  1. public class MultiLock {
  2. static volatile int count=30;
  3. // private static AtomicInteger count = new AtomicInteger(20);
  4. public synchronized void f1() {//买票一
  5. if ( count--> 0) {
  6. System.out.println(Thread.currentThread().getName() + " f1() " + count);
  7. }
  8. try {
  9. TimeUnit.MILLISECONDS.sleep(200);
  10. } catch (InterruptedException e) {
  11. e.printStackTrace();
  12. }
  13. }
  14. public synchronized void f2() {//买票2.
  15. if (count--> 0) {
  16. System.out.println(Thread.currentThread().getName() + " f2() " + count);
  17. }
  18. try {
  19. TimeUnit.MILLISECONDS.sleep(200);
  20. } catch (InterruptedException e) {
  21. e.printStackTrace();
  22. }
  23. }
  24. public static void main(String[] args) throws Exception {
  25. MultiLock multiLock = new MultiLock();
  26. new Thread("Thread1-1->") {
  27. public void run() {
  28. while (MultiLock.count>0)
  29. multiLock.f1();
  30. }
  31. }.start();
  32. new Thread("Thread 1-2->") {
  33. public void run() {
  34. while (MultiLock.count>0)
  35. multiLock.f2();
  36. }
  37. }.start();
  38. MultiLock multiLock1 = new MultiLock();
  39. new Thread("Thread 2-1->") {
  40. @Override
  41. public void run() {
  42. while (MultiLock.count>0)
  43. multiLock1.f1();
  44. }
  45. }.start();
  46. new Thread("Thread 2-2->") {
  47. @Override
  48. public void run() {
  49. while (MultiLock.count>0)
  50. multiLock1.f2();
  51. }
  52. }.start();
  53. }
  54. }

四个线程,有两个对象,所以当其他对象访问方法的时候还是会出现资源冲突的问题。
②:类锁:针对每一个类,也有一个锁,synchroized static 方法可以在类的范围内防止对static 数据的并发访问。

  1. public class MultiLock {
  2. static volatile int count=30;
  3. // private static AtomicInteger count = new AtomicInteger(20);
  4. public synchronized static void f1() {//买票一
  5. if ( count--> 0) {
  6. System.out.println(Thread.currentThread().getName() + " f1() " + count);
  7. }
  8. try {
  9. TimeUnit.MILLISECONDS.sleep(200);
  10. } catch (InterruptedException e) {
  11. e.printStackTrace();
  12. }
  13. }
  14. public synchronized static void f2() {//买票2.
  15. if (count--> 0) {
  16. System.out.println(Thread.currentThread().getName() + " f2() " + count);
  17. }
  18. try {
  19. TimeUnit.MILLISECONDS.sleep(200);
  20. } catch (InterruptedException e) {
  21. e.printStackTrace();
  22. }
  23. }
  1. 这样既使是多个实例也不会出现冲突的现象。<br />**③:临界区:**<br /> 有时候你只希望防止多个线程同时访问方法内部的部分代码而不是整个方法。通过这种方式分离出来的代码段被称为临界区,他也适用**synchronized**关键字建立
  1. synchronized(synObject){
  2. // java block
  3. }

这里,synchronized被用来指定某个对象此对象的锁被用来对花括号内的代码进行同步控制。这也被称为同步代码块:在进入此段代码前,必须得到synObject对象的锁。如果其他线程已经得到这个锁,那么就得到锁被释放以后,才能进入临界区。
④:在其他对象上同步:
synchronized快必须给定一个在其上进行同步的对象,并且最合理的方式是,使用其方法正在被调用的当前对象:synchronized(this)。有时必须在另一个对象上同步,但这样就必须要保证所有相关的任务都是在同一个对象上进行的。

  1. class DualSynch {
  2. private Object syncobject = new Object();
  3. public synchronized void f() {
  4. for (int i = 0; i < 5; i++) {
  5. System.out.println("f()");
  6. Thread.yield();
  7. }
  8. }
  9. public void g() {
  10. synchronized (syncobject) {
  11. for (int i = 0; i < 5; i++) {
  12. System.out.println("g()");
  13. Thread.yield();
  14. }
  15. }
  16. }
  17. }
  18. public class SyncObject {
  19. public static void main(String[] args) {
  20. DualSynch dualSynch = new DualSynch();
  21. new Thread() {
  22. @Override
  23. public void run() {
  24. dualSynch.f();
  25. }
  26. }.start();
  27. dualSynch.g();
  28. }
  29. }
  1. 两个任务在同时进入一个对象。因为这两个同步是相互独立的是不针对不同的对象同步的。因此任何一个方法都没有因为对另一个方法的同步所阻塞。

2.线程本地存储

  1. 解决线程冲突的第二种方式是根除对变量的共享(一个对象中的实例变量、静态字段、构成数组对象的元素),通过使用ThreadLocal可以来创建和管理线程的本地存储。<br /> ** ThreadLocal实现机制**:运用了map结合的特性实现来为每一个线程开辟一个自己储存空间<br /> ThreadLocal部分源码
  1. public T get() {
  2. Thread t = Thread.currentThread();
  3. ThreadLocalMap map = getMap(t);
  4. if (map != null) {
  5. ThreadLocalMap.Entry e = map.getEntry(this);
  6. if (e != null) {
  7. @SuppressWarnings("unchecked")
  8. T result = (T)e.value;
  9. return result;
  10. }
  11. }
  12. return setInitialValue();
  13. }
  14. public void set(T value) {
  15. Thread t = Thread.currentThread();
  16. ThreadLocalMap map = getMap(t);
  17. if (map != null)
  18. map.set(this, value);
  19. else
  20. createMap(t, value);
  21. }
  1. ThreadLocal正是将每个线程当做mao集合中的key,将每个线程的对应的值作为mao中的value,所以才做到为每一个线程开辟一个存储空间。<br /> **示列**:通过threaLocal来管理线程本地资源
  1. package com.package21.utils;
  2. public class ThreadLoclDemo {
  3. static ThreadLocal<String> threadLocal = new ThreadLocal() {
  4. @Override
  5. protected String initialValue() {//设置初始值
  6. return "adc";
  7. }
  8. };
  9. public static void main(String[] args) {
  10. new Thread(() -> {
  11. String s = threadLocal.get();
  12. threadLocal.set(s + " aaa");
  13. System.out.println(threadLocal.get());
  14. }).start();
  15. new Thread(() -> {
  16. String s = threadLocal.get();
  17. threadLocal.set(s + " bbb");
  18. System.out.println(threadLocal.get());
  19. }).start();
  20. }
  21. }

ThreadLocal会为每个线程创建一个独属的变量存储空间,通过重写initialValue()来随机为每个线程返回一个变量的初始值。通过调用get方法可以获取到这个值,而set方法会将参数插入到线程的存储空间中。即便值有一个对象,但是程序运行的时候,每个线程都被分配了自己的存储,都去跟踪了自己的数值。

3.使用显示的Lock对象:

  1. javase5中的concurrent类库中还包括有定义在Locks中显示的互斥机制(加锁)。Lock对象必须被显示的创建、锁定和释放,与synchronized相比,更加灵活。<br />** 示列:使用显示的lock重写偶数列子**
  1. public class MutexEvenGenerator extends IntGenerator{
  2. private int i=0;
  3. private Lock lock=new ReentrantLock();//创建锁
  4. @Override
  5. public int next() {
  6. lock.lock();//加锁
  7. try{
  8. ++i;
  9. ++i;
  10. return i;
  11. }finally {
  12. lock.unlock();//释放锁
  13. }
  14. }
  15. public static void main(String[] args) {
  16. EvenChecker.test(new MutexEvenGenerator());
  17. }
  18. }

注意:在使用显示的lock锁时,对lock的调用,必须放置在finally子句中带有unlock的try-fianlly语句中。同时
return子句必须在try中,以防止unlock不会过早发生,从而将数据暴露给第二个任务。
①:显示的lock优点:
1. 在使用synchronized关键字时,如果某些事物失败了,那么就会抛出一个异常,但是却没有机会去做任何的清理工作,使用显示的lock时就可以使用fianlly子句将系统维护在正确的状态了。
2.ReentrantLock允许但一个线程获取锁的时候,另一个线程尝试去获取但未获取,可以去离开做其他的事情。

  1. package com.package21.lock;
  2. import java.util.concurrent.TimeUnit;
  3. import java.util.concurrent.locks.ReentrantLock;
  4. public class AttemotLocking {
  5. private ReentrantLock lock=new ReentrantLock();
  6. public void untimed(){
  7. boolean captured=lock.tryLock();
  8. try {
  9. System.out.println("trylock "+captured);
  10. }finally {
  11. if (captured){
  12. lock.unlock();
  13. }
  14. }
  15. }
  16. public void timed(){
  17. boolean captured=false;
  18. try{
  19. captured=lock.tryLock(200, TimeUnit.MILLISECONDS);//尝试在2号码内获取锁,与untimes是同一把锁
  20. } catch (InterruptedException e) {
  21. throw new RuntimeException(e);
  22. }
  23. try{
  24. System.out.println("lock.tryLock(2, TimeUnit.SECONDS); "+captured);
  25. }
  26. finally {
  27. if (captured)
  28. lock.unlock();
  29. }
  30. }
  31. public static void main(String[] args) throws InterruptedException {
  32. AttemotLocking locking = new AttemotLocking();
  33. locking.untimed();
  34. locking.timed();
  35. new Thread(){
  36. @Override
  37. public void run() {
  38. boolean b = false;
  39. try {
  40. b = locking.lock.tryLock(2, TimeUnit.MILLISECONDS);
  41. } catch (InterruptedException e) {
  42. System.out.println(e);
  43. }finally {
  44. if (b)
  45. System.out.println("成功获得锁");
  46. else
  47. System.out.println("失败 执行其他事情");
  48. }
  49. }
  50. }.start();
  51. }
  52. }

3.ReentrantLock中的lockInterruptibly()方法去获取锁,如果锁被占用,一样会阻塞,但可以调用interrupt()当断线程,同时会抛出InterruptedException。
示列:lockInterruptibly()的运用

  1. public class IockInterruptiblyDemo {
  2. public static void main(String[] args) throws InterruptedException {
  3. Lock lock = new ReentrantLock();
  4. Thread thread1= new Thread(()->{
  5. System.out.println(Thread.currentThread().getName() + "获得了锁");
  6. lock.lock();
  7. try {
  8. TimeUnit.SECONDS.sleep(10);
  9. lock.unlock();
  10. } catch (InterruptedException e) {
  11. System.out.println("获取锁失败。。。。。。。。。。。。");
  12. }
  13. });
  14. thread1.start();
  15. TimeUnit.SECONDS.sleep(1);
  16. Thread thread=new Thread(()->{
  17. System.out.println("lockInterruptibly");
  18. try {
  19. lock.lockInterruptibly();
  20. System.out.println("===========");
  21. } catch (InterruptedException e) {
  22. System.out.println(e);
  23. }
  24. });
  25. thread.start();
  26. System.out.println("开始打断线程");
  27. TimeUnit.SECONDS.sleep(2);
  28. thread.interrupt();
  29. }
  30. }
  1. synchronized则会一直处于阻塞状态,不能去打断。
  1. class Block {
  2. public synchronized void f() {
  3. try {
  4. TimeUnit.SECONDS.sleep(10);
  5. } catch (InterruptedException e) {
  6. e.printStackTrace();
  7. }
  8. System.out.println("========f()============");
  9. }
  10. public synchronized void info() {
  11. System.out.println("=========info()==========");
  12. }
  13. }
  14. public class IockInterruptiblyDemo2 {
  15. static Block soo = new Block();
  16. public static void main(String[] args) throws InterruptedException {
  17. Thread thread = new Thread(() -> {
  18. System.out.println(Thread.currentThread().getName()+"获得了锁");
  19. soo.f();
  20. });
  21. thread.start();
  22. TimeUnit.SECONDS.sleep(1);
  23. Thread thread2 = new Thread(() -> {
  24. try {
  25. System.out.println(Thread.currentThread().getName()+"thread2准备获取锁");
  26. soo.info();
  27. } catch (Exception e) {
  28. System.out.println(e);
  29. }
  30. });
  31. TimeUnit.SECONDS.sleep(2);
  32. System.out.println("开始打断");
  33. thread2.interrupt();
  34. System.out.println("打断已经完成");
  35. }
  36. }

虽然执行打断语句,但是线程二还会一直阻塞,知道线程一释放锁再去执行。

4.原子类

javase5引入了AtomicInteger、AtomicLong、AtomicRefernce等特殊的原子性变量类,在涉及性能优化的时候,用处就很大了。

  1. public class AtomicIntegeTest implements Runnable {
  2. private AtomicInteger integer = new AtomicInteger();
  3. public int getInteger() {
  4. return integer.get();
  5. }
  6. public void evenIncrement() {
  7. integer.addAndGet(2);
  8. }
  9. @Override
  10. public void run() {
  11. while (true) {
  12. evenIncrement();//一直去加2
  13. }
  14. }
  15. public static void main(String[] args) {
  16. ExecutorService service = Executors.newCachedThreadPool();
  17. AtomicIntegeTest test = new AtomicIntegeTest();
  18. new Timer().schedule(new TimerTask() {//定时任务,五秒后执行任务
  19. @Override
  20. public void run() {
  21. System.out.println("Aborting");
  22. System.exit(0);
  23. }
  24. },5000);
  25. service.execute(test);
  26. while (true) {
  27. int integer = test.getInteger();
  28. if (integer % 2 != 0) {
  29. System.out.println(integer);
  30. System.exit(0);
  31. }
  32. }
  33. }
  34. }
  1. 由于AtomicInteger是原子类,所以在 evenIncrement()的时候是原子操作。尽管没有使用synchronized,该程序也不会产生非偶数。同时,原子类的操作并不是加锁的操作,所以说当加锁的方法被阻塞时,对原子类操作并无影响。

二、可视性和原子性

1.可视性:

volatile关键字确保了应用中的可视性,如果将一个域声明为valatile的那么只要对这个域产生了写操作,那么所以的读取操作都可以看到这个改变。
原理:因为valatile域会被立即写入到主存中,而读取操作就发生在主存中。
注意:volatile通常会配合Boolean一起使用。

2.原子性:

  1. **①:原子性的定义:**<br /> 只有一步操作的被称为原子性:如赋值,和返回等和Boolean类型。注意:java中的i++不是原子性的, <br /> **②:如果一个值的变化不是原子性的,那么对于这个值的读取和赋值操作都要加锁**<br />** 示列一:值的变化不是原子性的**
  1. public class AtomcityTest implements Runnable{
  2. private int i = 0;
  3. //返回是原子操作
  4. public int getValue(){
  5. return i;
  6. }
  7. //方法是同步的,但是对变量的修改 其他线程可以看到
  8. //错误的理解:synchronized同步的方法,内部对成员变量的处理,
  9. //在通过其他非同步方法访问的时候也是同步的
  10. public synchronized void evenIncrement(){
  11. i++;//非原子操作
  12. i++;
  13. }
  14. @Override
  15. public void run() {
  16. while (true) {
  17. //System.out.println("---"+i+"---");
  18. evenIncrement();
  19. }
  20. }
  21. public static void main(String[] args) {
  22. AtomcityTest atomcityTest = new AtomcityTest();
  23. ExecutorService service = Executors.newCachedThreadPool();
  24. service.execute(atomcityTest);
  25. while (true){
  26. int value = atomcityTest.getValue();
  27. System.out.println("==="+value+"===");
  28. if(value % 2 !=0){
  29. System.out.println(value);
  30. System.exit(0);
  31. }
  32. }
  33. }
  34. }
  1. 虽然i++采用了加锁机制,而且return也是原子性的操作,但是对变量的修改 其他线程在使用getValue时也是可以看到的。所以说这个时候原子性的操作也无用武之地。必须在读取值的方法上也加锁才能保证程序的同步性。<br />** 示列二:值的变化是原子性的**
  1. public class AtomcityTest2 implements Runnable{
  2. private boolean flag = false;
  3. public boolean getValue(){
  4. return flag;
  5. }
  6. //此处不加synchronized也是可以的
  7. public synchronized boolean evenIncrement(){
  8. return flag = !flag;
  9. }
  10. @Override
  11. public void run() {
  12. while (true) {
  13. System.out.println("---"+flag+"---");
  14. evenIncrement();
  15. }
  16. }
  17. public static void main(String[] args) {
  18. AtomcityTest2 test2 = new AtomcityTest2();
  19. ExecutorService service = Executors.newCachedThreadPool();
  20. service.execute(test2);
  21. while (true){
  22. boolean flag = test2.getValue();
  23. System.out.println("==="+flag+"===");
  24. if(flag){
  25. System.out.println(flag);
  26. System.exit(0);
  27. }
  28. }
  29. }
  30. }
  1. Boolean只有truefalse两种状态 ,所以说既是在读取的时候不加锁也是没问题的。同样在赋值的时候不加入锁也是没问题的。