要自定義一個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方法來獲取自定義的字符串。