gpt4 book ai didi

javafx - 听众工作,不绑定(bind)

转载 作者:行者123 更新时间:2023-12-05 04:09:13 24 4
gpt4 key购买 nike

这是一个最小的工作示例:

public class FF {

@Test
public void test01() {
final ListProperty p = new SimpleListProperty(FXCollections.observableArrayList());
p.addListener((ListChangeListener) c -> {
System.err.println("Listener here..");
});
Bindings.createObjectBinding(() -> {
System.err.println("Binding here");
return null;
}, p);

p.add("hans");
}

@Test
public void test02() {
final ListProperty p = new SimpleListProperty(FXCollections.observableArrayList());
final ListProperty p2 = new SimpleListProperty(FXCollections.observableArrayList());
p.addListener((ListChangeListener) c -> {
System.err.println("Listener 1 here..");
});
p2.addListener((ListChangeListener) c -> {
System.err.println("Listener 2 here..");
});
final ObjectBinding ob = Bindings.createObjectBinding(() -> {
System.err.println("Binding here");
return null;
}, p);
p2.bind(ob);
p.add("hans");

}

}

第二个测试看起来像预期的那样,但对于第一个测试,输出只是“Listener here..”。为什么绑定(bind)在这种情况下不起作用?

匿名Listener和匿名Binding有什么区别?

最佳答案

您已经创建了 Binding 对象,但没有通过它绑定(bind)任何东西,所以它优化了自己什么也不做。

添加任何随机操作以查看“绑定(bind)此处...”输出。例如:

    ObjectBinding<ObservableList> ob = Bindings.createObjectBinding(() -> {
System.err.println("Binding here");
return null;
}, p);
ob.addListener((o) -> {
System.out.println("random action");
});

关于javafx - 听众工作,不绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46394503/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com