5

看起来Java内存模型没有定义本地缓存的“刷新”和“刷新”,相反人们只是为了简单起见才这样称呼它,但实际上“发生在之前”的关系意味着以某种方式刷新和刷新(如果您可以解释这一点,但不是问题的直接部分)。

再加上JLS中关于 Java 内存模型的部分并没有以易于理解的方式编写,这让我感到非常困惑。

因此,您能否告诉我我在以下代码中所做的假设是否正确,因此是否可以保证正确运行?

它部分基于 Wikipedia article on Double-checked locking中提供的代码,但是作者使用了一个包装类 ( FinalWrapper),但其原因对我来说并不完全清楚。也许是为了支持null价值观?

public class Memoized<T> {
    private T value;
    private volatile boolean _volatile;
    private final Supplier<T> supplier;

    public Memoized(Supplier<T> supplier) {
        this.supplier = supplier;
    }

    public T get() {
        /* Apparently have to use local variable here, otherwise return might use older value
         * see https://jeremymanson.blogspot.com/2008/12/benign-data-races-in-java.html
         */
        T tempValue = value;

        if (tempValue == null) {
            // Refresh
            if (_volatile);
            tempValue = value;

            if (tempValue == null) {
                // Entering refreshes, or have to use `if (_volatile)` again?
                synchronized (this) {
                    tempValue = value;

                    if (tempValue == null) {
                        value = tempValue = supplier.get();
                    }

                    /* 
                     * Exit should flush changes
                     * "Flushing" does not actually exists, maybe have to use  
                     * `_volatile = true` instead to establish happens-before?
                     */
                }
            }
        }

        return tempValue;
    }
}

我还读到构造函数调用可以内联和重新排序,从而导致对未初始化对象的引用(请参阅博客上的此评论)。那么直接分配供应商的结果是否安全,还是必须分两步完成?

value = tempValue = supplier.get();

两步:

tempValue = supplier.get();
// Reorder barrier, maybe not needed?
if (_volatile);
value = tempValue;

编辑:这个问题的标题有点误导,目的是减少 volatile 字段的使用。如果初始化值已经在线程的缓存中,则value直接访问,无需再次查看主存。

4

2 回答 2

5

如果你只有几个单例,你可以减少 volatile 的使用。注意:您必须为每个单例重复此代码。

enum LazyX {
   ;
   static volatile Supplier<X> xSupplier; // set somewhere before use

   static class Holder {
       static final X x = xSupplier.get();
   }

   public static X get() {
       return Holder.x;
   }
}

如果您知道供应商,这将变得更简单

enum LazyXpensive {
   ;

   // called only once in a thread safe manner
   static final Xpensive x = new Xpensive();

   // after class initialisation, this is a non volatile read
   public static Xpensive get() {
       return x;
   }
}

您可以通过使用避免使该字段易变Unsafe

import sun.misc.Unsafe;

import java.lang.reflect.Field;
import java.util.function.Supplier;

public class LazyHolder<T> {
    static final Unsafe unsafe = getUnsafe();
    static final long valueOffset = getValueOffset();

    Supplier<T> supplier;
    T value;

    public T get() {
        T value = this.value;
        if (value != null) return value;

        return getOrCreate();
    }

    private T getOrCreate() {
        T value;
        value = (T) unsafe.getObjectVolatile(this, valueOffset);
        if (value != null) return value;

        synchronized (this) {
            value = this.value;
            if (value != null) return value;
            this.value = supplier.get();
            supplier = null;
            return this.value;
        }
    }


    public static Unsafe getUnsafe() {
        try {
            Field theUnsafe = Unsafe.class.getDeclaredField("theUnsafe");
            theUnsafe.setAccessible(true);
            return (Unsafe) theUnsafe.get(null);
        } catch (NoSuchFieldException | IllegalAccessException e) {
            throw new AssertionError(e);
        }
    }

    private static long getValueOffset() {
        try {
            return unsafe.objectFieldOffset(LazyHolder.class.getDeclaredField("value"));
        } catch (NoSuchFieldException e) {
            throw new AssertionError(e);
        }
    }
}

但是,进行额外的查找是一种微优化。如果您愿意每个线程进行一次同步命中,则可以完全避免使用 volatile。

于 2019-01-08T21:53:18.247 回答
3

您的代码不是线程安全的,可以通过剥离所有不相关的部分来轻松显示:

public class Memoized<T> {
    private T value;
    // irrelevant parts omitted

    public T get() {
        T tempValue = value;

        if (tempValue == null) {
            // irrelevant parts omitted
        }

        return tempValue;
    }
}

所以value没有volatile修饰符,你在get()没有同步的方法中读取它,如果不是null,继续使用它而不进行任何同步。

仅此代码路径就已经使代码损坏,无论您在分配时做什么value,因为所有线程安全构造都需要两端(读取端和写入端)使用兼容的同步机制。

你正在使用像这样的深奥结构这一事实if (_volatile);变得无关紧要,因为代码已经被破坏了。

Wikipedia 示例使用带有final字段的包装器的原因是,仅使用字段的不可变对象final不受数据竞争的影响,因此,在没有同步操作的情况下读取其引用时唯一安全的构造。

请注意,由于 lambda 表达式属于同一类别,因此您可以使用它们来简化用例的示例:

public class Memoized<T> {
    private boolean initialized;
    private Supplier<T> supplier;

    public Memoized(Supplier<T> supplier) {
        this.supplier = () -> {
            synchronized(this) {
                if(!initialized) {
                    T value = supplier.get();
                    this.supplier = () -> value;
                    initialized = true;
                }
            }
            return this.supplier.get();
        };
    }

    public T get() {
        return supplier.get();
    }
}

在这里,supplier.get()withinMemoized.get()可能会读取没有同步操作的更新值supplier,在这种情况下,它将读取正确的value,因为它是隐式的final。如果该方法为supplier参考读取了一个过时的值,它将在块处结束,该synchronized(this)块使用该initialized标志来确定是否需要对原始供应商进行评估。

由于该initialized字段只能在synchronized(this)块内访问,因此它将始终评估为正确的值。对于每个线程,该块最多执行一次,而只有第一个将评估get()原始供应商。之后,每个线程将使用() -> value供应商,返回值而不需要任何同步操作。

于 2019-05-29T13:52:35.307 回答