Heim  >  Fragen und Antworten  >  Hauptteil

并发 - Java static / non-static synchronized方法同时修改static成员变量,会有问题吗?

阿神阿神2712 Tage vor512

Antworte allen(1)Ich werde antworten

  • 迷茫

    迷茫2017-04-18 10:39:15

    参考StackOverflow问题:

    http://stackoverflow.com/ques...

    但是,还是意犹未尽,还请各位多多指教、探讨!


    补充:

    运行如下测试程序,最后的结果并不是20000,中间有很多次结果都被覆盖了。

    public class Test {
        
        private static int staticVariableOne = 0;
    
        public Test() {
            super();
        }
        
        public static int getStaticVariableOne() {
            return staticVariableOne;
        }
    
        public static void setStaticVariableOne(int staticVariableOne) {
            Test.staticVariableOne = staticVariableOne;
        }
        
        private static void increaseStaticVariableOne() {
            staticVariableOne++;
        }
        
        public synchronized void add() {
            System.out.println("执行 add() 开始...");
            try {
                for (int i  = 0; i < 10000; i++) {
                    increaseStaticVariableOne();
                    Thread.sleep(1);
                }
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            System.out.println("执行 add() 完毕...");
        }
     
        public synchronized static void addStatic() {
            System.out.println("执行 addStatic() 开始...");
            try {
                for (int i  = 0; i < 10000; i++) {
                    increaseStaticVariableOne();
                    Thread.sleep(2);
                }
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            System.out.println("执行 addStatic() 完毕...");
        }
    
    }
    public class StudyMain {
        public static void main( String[] args ) {
            
            final Test insertData = new Test();
            Thread threadOne = new Thread() {
                @Override
                public void run() {
                    insertData.add();
                }
            };
            
            Thread threadTwo = new Thread() {
                @Override
                public void run() {
                    Test.addStatic();
                }
            };
            
            threadOne.start();
            threadTwo.start();
            try {
                threadOne.join();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            try {
                threadTwo.join();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            System.out.println("After 20000 times increasements, final staticVariableOne is "
            + Test.getStaticVariableOne());
        }
    }

    Antwort
    0
  • StornierenAntwort