Скажімо, у мене є Перелік об’єктів, які були визначені за допомогою лямбда-виразів (закриття). Чи є спосіб їх перевірити, щоб їх можна було порівняти?
Код, який мене найбільше цікавить, це
List<Strategy> strategies = getStrategies();
Strategy a = (Strategy) this::a;
if (strategies.contains(a)) { // ...
Повний код
import java.util.Arrays;
import java.util.List;
public class ClosureEqualsMain {
interface Strategy {
void invoke(/*args*/);
default boolean equals(Object o) { // doesn't compile
return Closures.equals(this, o);
}
}
public void a() { }
public void b() { }
public void c() { }
public List<Strategy> getStrategies() {
return Arrays.asList(this::a, this::b, this::c);
}
private void testStrategies() {
List<Strategy> strategies = getStrategies();
System.out.println(strategies);
Strategy a = (Strategy) this::a;
// prints false
System.out.println("strategies.contains(this::a) is " + strategies.contains(a));
}
public static void main(String... ignored) {
new ClosureEqualsMain().testStrategies();
}
enum Closures {;
public static <Closure> boolean equals(Closure c1, Closure c2) {
// This doesn't compare the contents
// like others immutables e.g. String
return c1.equals(c2);
}
public static <Closure> int hashCode(Closure c) {
return // a hashCode which can detect duplicates for a Set<Strategy>
}
public static <Closure> String asString(Closure c) {
return // something better than Object.toString();
}
}
public String toString() {
return "my-ClosureEqualsMain";
}
}
Здається, єдиним рішенням є визначення кожної лямбди як поля та використання лише цих полів. Якщо ви хочете роздрукувати викликаний метод, вам краще використовувати Method
. Чи є кращий спосіб із лямбда-виразами?
Крім того, чи можна надрукувати лямбду і отримати щось зрозуміле для людини? Якщо ви друкуєте this::a
замість
ClosureEqualsMain$$Lambda$1/821270929@3f99bd52
отримати щось на зразок
ClosureEqualsMain.a()
або навіть використовувати this.toString
і метод.
my-ClosureEqualsMain.a();