Próbuję jawnie użyć LambdaMetafactory.metafactory, nie mogę zrozumieć, dlaczego działa tylko z funkcjonalnym interfejsem Runnable. Na przykład ten kod robi to, co oczekuje się (drukuje „Hello World”):Jednoznaczne użycie LambdaMetafactory
public class MetafactoryTest {
public static void main(String[] args) throws Throwable {
MethodHandles.Lookup caller = MethodHandles.lookup();
MethodType methodType = MethodType.methodType(void.class);
MethodType invokedType = MethodType.methodType(Runnable.class);
CallSite site = LambdaMetafactory.metafactory(caller,
"run",
invokedType,
methodType,
caller.findStatic(MetafactoryTest.class, "print", methodType),
methodType);
MethodHandle factory = site.getTarget();
Runnable r = (Runnable) factory.invoke();
r.run();
}
private static void print() {
System.out.println("hello world");
}
}
Problem pojawia się, gdy próbuję użyć innego interfejsu funkcjonalne, takie jak Dostawcę. Poniższy kod nie działa:
public class MetafactoryTest {
public static void main(String[] args) throws Throwable {
MethodHandles.Lookup caller = MethodHandles.lookup();
MethodType methodType = MethodType.methodType(String.class);
MethodType invokedType = MethodType.methodType(Supplier.class);
CallSite site = LambdaMetafactory.metafactory(caller,
"get",
invokedType,
methodType,
caller.findStatic(MetafactoryTest.class, "print", methodType),
methodType);
MethodHandle factory = site.getTarget();
Supplier<String> r = (Supplier<String>) factory.invoke();
System.out.println(r.get());
}
private static String print() {
return "hello world";
}
}
Exception in thread "main" java.lang.AbstractMethodError: metafactorytest.MetafactoryTest$$Lambda$1/258952499.get()Ljava/lang/Object;
at metafactorytest.MetafactoryTest.main(MetafactoryTest.java:29)
nie powinno dwa fragment kodu pracy w podobny sposób, co jest problemem w drugim fragmencie kodu?
Ponadto następujący kod, który powinien być równy, działa dobrze:
public class MetafactoryTest {
public static void main(String[] args) throws Throwable {
Supplier<String> r = (Supplier<String>)() -> print();
System.out.println(r.get());
}
private static String print() {
return "hello world";
}
}
Edycja
Innym rozwiązaniem, które pozwala uniknąć zmienić typ metoda powrotu jest zdefiniowanie nowego interfejsu funkcjonalne:
public class MetafactoryTest {
@FunctionalInterface
public interface Test {
String getString();
}
public static void main(String[] args) throws Throwable {
MethodHandles.Lookup caller = MethodHandles.lookup();
MethodType methodType = MethodType.methodType(String.class);
MethodType invokedType = MethodType.methodType(Test.class);
CallSite site = LambdaMetafactory.metafactory(caller,
"getString",
invokedType,
methodType,
caller.findStatic(MetafactoryTest.class, "print", methodType),
methodType);
MethodHandle factory = site.getTarget();
Test r = (Test) factory.invoke();
System.out.println(r.getString());
}
private static String print() {
return "hello world";
}
Być może problem polega na tym, że nazwa metody "uruchom" przekazujesz jako drugi argument. Runnable ma metodę "run". Dostawca tego nie robi. – Eran
To był błąd (The Runnable case działa tylko z "run"), ale także z tym, że drugi fragment daje ten błąd. – andrebask