gpt4 book ai didi

java - 如何为 Java 7 重写此代码

转载 作者:行者123 更新时间:2023-12-02 02:31:14 27 4
gpt4 key购买 nike

我想为 Java 7 编写这段代码。

timeline.setOnFinished(actionEvent -> Platform.runLater(() -> {
POPUP.hide();
popups.remove(POPUP);
}));

我写的是:

timeline.setOnFinished(new EventHandler<ActionEvent>(){

@Override
public void handle(ActionEvent arg0) {
POPUP.hide();
popups.remove(POPUP);
}
});

但我不确定在哪里插入其余代码。

我必须在哪里插入Platform.runLater(()

最佳答案

你可以尝试这样的事情:

    timeline.setOnFinished(new EventHandler<ActionEvent>(){
public void handle(final ActionEvent e){
Platform.runLater(
new Runnable(){
public void run(){
POPUP.hide();
popups.remove(POPUP);
}
}
);
}
});

关于java - 如何为 Java 7 重写此代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18688627/

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