Thread safety of a fluent like class using clone() and non final fields

主宰稳场 提交于 2019-12-13 15:51:25

问题


This fluent like class is not strictly immutable because the fields are not final, but is it thread safe, and why?

The thread safety issue I'm concerned with is not the race condition, but the visibility of the variables. I know there is a workaround using final variables and a constructor instead of clone() + assignment. I just want to know if this example is a viable alternative.

public class IsItSafe implements Cloneable {

    private int foo;
    private int bar;

    public IsItSafe foo(int foo) {
        IsItSafe clone = clone();
        clone.foo = foo;
        return clone;
    }

    public IsItSafe bar(int bar) {
        IsItSafe clone = clone();
        clone.bar = bar;
        return clone;
    }

    public int getFoo() {
        return foo;
    }

    public int getBar() {
        return bar;
    }

    protected IsItSafe clone() {
        try {
            return (IsItSafe) super.clone();
        } catch (CloneNotSupportedException e) {
            throw new Error(e);
        }
    }
}

回答1:


You are not holding a Lock while setting the field and as you mention yourself the field is not final.

Therefore from a visibility standpoint this approach is not thread-safe.

Some further clarifications here: https://stackoverflow.com/a/9633968/136247

Update regarding the question of using volatile:

For the sake of the argument using volatile fixes the threading issue here.
However you should reconsider final fields and a copy constructor because:

  • Field access will be slightly faster (the reads can always come from the cpu cache)
  • You avoid the discouraged use of clone (see Effective Java by Josh Bloch)
  • Constructor with final fields is a known idiom for immutable classes and will be easily recognised by readers of the code
  • Marking fields volatile while intending for them to be immutable is a contradiction in and of itself ;)



回答2:


This thread is fairly unanimous that the class is not thread safe because of visibility problems.

Why do you say that the class is not immutable? The state of the class is defined by foo and bar which, for any specific instances, can't be changed from outside the class once the instance is created. So it is immutable, even if the fields are not explicitly declared final.

The only place where foo and bar are changed (in the foo() and bar() methods), the changes are done on a local variable which is by definition only accessed by one thread at a time.

EDIT

I think this is an example of Stack Confinement as defined in Java Concurrency in Practice (3.3.2), which makes the foo() and bar() methods thread safe because clone is not allowed to escape the method before being fully constructed.

Local variables are intrinsically confined to the executing threead; they exist on the executing thread's stack, which is not accessible to other threads.



来源:https://stackoverflow.com/questions/9621260/thread-safety-of-a-fluent-like-class-using-clone-and-non-final-fields

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!