gpt4 book ai didi

java - 了解在 TableView 中添加 ChangeListener

转载 作者:行者123 更新时间:2023-11-30 02:36:24 27 4
gpt4 key购买 nike

我试图理解以下来源的一些代码:

http://code.makery.ch/library/javafx-8-tutorial/part3/

我仍然好奇的具体行是以下一行:

personTable.getSelectionModel().selectedItemProperty().addListener((observable, oldValue, newValue) -> showPersonDetails(newValue));

我相信我对javadoc的最初理解是不正确的;特别是在这部分([...].selectedItemProperty().[...]):

https://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SelectionModel.html#selectedItemProperty--

我问自己为什么我们只添加一个监听器,而我们可能有多个数据对象,但现在我的理解如下,很高兴知道它是否正确:

文档的意思是“selectedItem”本身是属性(不是底层数据!),它代表在运行时选择/选择更改的行,因此当用户更改选定的行。然后,通过 ChangeListener 接口(interface)的 change(...) 方法与底层数据模型进行同步,该方法从底层数据模型获取相应的数据对象进行处理。因此,根据我的理解,如果我没有在 TableView 上执行正确的 setItems(...) ,我可能会引发异常。

到目前为止这是否正确?

如果是,我有一个后续问题:ReadOnlyObjectProperty 实现了 ObservableObservableValue,它们都有方法 addListener 。通过检查两个可能的功能接口(interface)的两个方法的参数列表(可以作为 addListener(...) 方法之一的参数)来正确解析 Lambda 表达式是否正确?这一点对我来说似乎相当复杂。

最佳答案

selectionModel.selectedItemProperty ReadOnlyObjectProperty<T>哪里Titem list 中元素的类型支持您的TableView<T> 。每当在 TableView 中选择一个新项目时,selectedItemProperty 的值就会更改以引用新项目。所选项目本身不是 TableRow<T> ,它只是对用于渲染行的基础数据项的引用。一般来说,作为应用程序程序员,您通常不关心可视化构造的 TableRow,而只关心底层数据。当用户单击表中的一行时,TableView 实现将 selectedItemProperty 设置为选定的数据项,从而触发在该属性上设置的任何更改监听器。

在制造商示例中,T类型是Person 。所以这行的结果是:

personTable.getSelectionModel().selectedItemProperty().addListener(
(observable, oldValue, newValue) -> showPersonDetails(newValue)
);

是调用showPersonDetails(Person person)函数,每当选择的人发生变化时都会传递该人。

So from my understanding i would probably raise an exception if i didn't do a correct setItems(...) on my TableView.

没有。如果您没有设置任何项目,则用户永远无法选择表上的项目,因此您永远不会从所选项目更改监听器中得到异常,因为所选项目永远不会从 null 更改,并且更改监听器永远不会火。

i have got a follow up question: ReadOnlyObjectProperty implements both Observable and ObservableValue which both have the method addListener. Is it correct that the Lambda-Expression is resolved correctly by checking the list of parameters of the two methods of the two possible functional interfaces which could be argument to either one of the addListener(...) methods?

是的。 lambda 如何解析使用哪个方法 which is complicated in compiler implementation ,但从应用程序程序员可用性的角度来看,您可以只计算参数:如果是一个参数,则为 InvalidationListener正在定义,如果是3个参数,则为ChangeListener正在定义中。

有两个addListener(...)方法,因为它是overloaded method ,一换一ChangeListener另一个是 InvalidationListener 。两者之间的区别很微妙,是 explained by the developer of the interfaces建议:“如果需要知道监听器中的新值,请使用 ChangeListener,否则使用 InvalidationListener”。

关于java - 了解在 TableView 中添加 ChangeListener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42932662/

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