要自定义一个Java Supplier接口的实现,可以通过创建一个实现了Supplier接口的类来实现。以下是一个简单的示例:
import java.util.function.Supplier;
public class CustomSupplier implements Supplier<String> {
@Override
public String get() {
return "Custom implementation of Supplier";
}
public static void main(String[] args) {
CustomSupplier customSupplier = new CustomSupplier();
System.out.println(customSupplier.get());
}
}
在这个示例中,我们创建了一个CustomSupplier类,实现了Supplier接口,并重写了get方法来返回一个自定义的字符串。在main方法中,我们实例化了CustomSupplier类并调用了get方法来获取自定义的字符串。