我有一个UI所在的主类,它实例化了逻辑所在的另一个类。我只在单击一个按钮时才创建逻辑实例。
private void computeActionPerformed(java.awt.event.ActionEvent evt) {
//A STAR MISPLACED
EightPuzzle ep2 = new EightPuzzle(stringToInt(initial),"mis");
solution = ep2.getSolution();
aMisplacedSpace.setText(ep2.getNodesTraversed()+" nodes"); // I would like to display this during the search and not just after
setCurrentTilesAStarMisplaced(solution.size()-1);
}
问题是我必须在UI中的某个JLabel中显示特定实例中遍历的节点数。我想我目前的结构不允许我这样做。有没有解决这个问题?