日期:2014-05-20  浏览次数:20629 次

Java如何用同步块来保护静态变量?
Java怎么样才能保护类的静态变量呢?
我在同步块中用synchronized(Babble.class)来给Babble类加锁,可是类变量j还是在中途被另一个线程更改了,怎么才能在这个过程中保护静态变量j呢?

public   class   Babble   {
        private   static   synchronized   void   say(String   s){
                System.out.println(s);
        }
        static   int   j=444;

        public   static   void   main(String[]   args)   {
                Thread   letters=new   Thread(){
                        public   void   run(){
                                synchronized(Babble.class){
                                //此处加在Babble类上的锁不能保护static   int   j,为什么?

                                        try{
                                                say( "a ");
                                                System.out.println( "syned   J= "+j);
                                                Thread.sleep(1000);
                                                System.out.println( "syned   J= "+j);
                                                //此时发现j已经被另一个线程改变了
                                                Thread.sleep(1000);
                                                say( "b ");
                                                Thread.sleep(1000);
                                                say( "c ");
                                                Thread.sleep(1000);
                                        }
                                        catch(InterruptedException   e)
                                        {}