4
我用兩種方式編寫了一個小型可運行JavaFX應用程序,以偵聽ObservableList的大小更改。第一個聽衆(52-58行)工作正確。第二個聽衆(第60-66行)在一些事件後停止工作。JavaFX Bindings.size()在某些事件後停止工作
當您經常點擊「添加按鈕」時,您可以重現此錯誤(?)。第一個視圖點擊,兩個消息都打印出來,稍後點擊一下,只有第一個聽衆進一步工作。
Runnable的例子:
import javafx.application.Application;
import javafx.application.Platform;
import javafx.beans.binding.Bindings;
import javafx.beans.value.ChangeListener;
import javafx.beans.value.ObservableValue;
import javafx.collections.FXCollections;
import javafx.collections.ListChangeListener;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.ListView;
import javafx.scene.layout.StackPane;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class Main extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) {
final ObservableList<String> list = FXCollections.observableArrayList();
primaryStage.setTitle("Demonstrator");
// Button
Button addButton = new Button();
addButton.setText("Add Element");
addButton.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
list.add("TEST");
}
});
// ListView
ListView<String> lv = new ListView<String>();
lv.setItems(list);
// Add elements to root
VBox root = new VBox();
root.getChildren().add(addButton);
root.getChildren().add(lv);
// Show scene
primaryStage.setScene(new Scene(root, 300, 250));
primaryStage.show();
// This listener works correct
list.addListener(new ListChangeListener<String>() {
@Override
public void onChanged(Change<? extends String> c) {
System.out.println("#listener1: " + list.size());
}
});
// This listener stops working after 10-30 clicks on the button
Bindings.size(list).addListener(new ChangeListener<Number>() {
@Override
public void changed(ObservableValue<? extends Number> observable, Number oldValue, Number newValue) {
System.out.println("#listener2: " + newValue);
}
});
}
}
我與JDK-8u112窗口-64和JDK-8u112窗口-i586的試了一下
沒有任何人有一個想法,如果有任何錯誤我代碼,或者如果它真的是JavaFX的問題?
我得到的溶液:
的結合被從垃圾收集器移除。您必須將綁定存儲爲字段。
謝謝!