Which is the difference between AtomicReference and Synchronized?

前端 未结 3 1147
独厮守ぢ
独厮守ぢ 2021-02-07 22:48

Is there any difference between AtomicReference and Synchronized?
E.G.

public class Internet {
    AtomicReference address;
    public String g         


        
3条回答
  •  悲&欢浪女
    2021-02-07 23:19

    You didn't initialize the reference in the first example, it should probably be:

    public class Internet {
        AtomicReference address = new AtomicReference();
        public String getAddress(){
            String s = address.get();
            return s == null ? null : s.toString();
        }
        public void setAddress(String address) {
            this.address.set(address);
        }
    }
    

    Where the access restriction is located is important. If you put the control within the object being accessed then it can have sole control of its invariants, which is much less fragile than relying on the threads to all synchronize properly, where one badly behaved accessing thread can corrupt the thing being accessed. So the first example is much better on that account.

    If you change the second example so that the object has control over its own locking (so it is not relying on threads accessing it to do so safely), like this:

    public class Internet {
        private final Object lock = new Object();
        private String s;
        public String getAddress() {
           synchronized(lock) {
               return s;
           }
        }
        public void setAddress(String s) {
            synchronized(lock) {
                this.s = s;
            }
        }
    }
    

    then it's a closer comparison, one relies on locking and the other on atomic references. The one using AtomicReference tries to avoid locking using machine-level atomic processing instructions. Which is faster may depend on your hardware and jvm and the processing load, typically the atomic approach should be faster. The synchronized approach is a more general purpose mechanism; with the synchronized block you can group together multiple assignments much more easily, where with atomic references it's much more involved.

    As James says in his answer, with synchronization your threads are waiting for a lock; there is no timeout, and deadlock is possible. With the atomic reference the thread makes its change with no waiting on a shared lock.

    The simplest and best-performing way to implement this would be to organize your code so that you can make the object immutable, so you would avoid all locking, busy-waiting, and cache updating:

    public final class Internet {
        private final String s;
        public Internet(String s) {
            this.s = s;
        }
        public String getAddress() {return s;}
    }
    

    In descending order of preference:

    • Prefer immutability whenever possible.
    • For code that can't be immutable, try to confine mutation to a thread.
    • If only one thing has to change across threads, use the atomic approach.
    • If multiple changes across threads need to occur together undisturbed by other threads, use locking.

提交回复
热议问题