改进javafx表中的删除行性能

时间:2013-06-26 09:34:00

标签: java performance javafx-2 tableview tablecolumn

我正在尝试使用此代码

从javafx表中删除行
new AnimationTimer() {
            @Override
            public void handle(long now) {
                int index = RNG.nextInt(table.getItems().size());
                table.getItems().remove(index); 
              }
        }.start();

但删除性能非常差。

关于如何改进它的任何建议。

编辑:我有 48

0 个答案:

没有答案