19/01/01 22:01:03.29 dc6+vvYb0.net
>>810
は?
import java.util.function.Supplier;
public class Test {
public static void main(String[] args) {
バニーガール a = new バニーガール(() -> "巨乳");
a.ぱふぱふ();
}
}
class バニーガール {
Supplier<String> create;
バニーガール(Supplier<String> create) {
this.create = create;
}
void ぱふぱふ() {
String おっぱい = create.get();
System.out.printf("%sでぱふぱふ", おっぱい);
}
}