在Java8中模拟Lazy

我编写了以下代码来模拟Lazy< T>在Java中:

import java.util.function.Supplier;

public class Main {

    @FunctionalInterface
    interface Lazy<T> extends Supplier<T> {
        Supplier<T> init();
        public default T get() { return init().get(); }
    }

    static <U> Supplier<U> lazily(Lazy<U> lazy) { return lazy; }
    static <T>Supplier<T> value(T value) { return ()->value; }

    private static Lazy<Thing> thing = lazily(()->thing=value(new Thing()));
    public static void main(String[] args) {

        System.out.println("One");
        Thing t = thing.get();
        System.out.println("Three");

    }
    static class Thing{ Thing(){System.out.println("Two");}}
}

但我得到以下警告:

“value (T) in Main cannot be applied to (com.company.Main.Thing)
reason: no instance(s) of type variable(s) T exist so that Supplier<T>
conforms to Lazy<Thing>

你能帮我找出问题所在吗?
提前致谢!

解决方法:

Lazy是供应商的子类,您正试图将其转换为其他类型.

更改

private static Lazy<Thing> thing = lazily(() -> thing = value(new Thing()));

private static Supplier<Thing> thing = lazily(() -> thing = value(new Thing()));

应该管用.

上一篇:为什么Python在if语句中将字符串/数字评估为True还是myNumber == True返回False?


下一篇:使用kubeadm搭建Kubernetes(1.10.2)集群(国内环境)