我的问题基本上来自Java语言,我无法弄清楚。
这只是一个基本代码,可以帮助我理解使用Platform.runlater
方法更新GUI的概念。
package practise;
import java.util.Random;
import javafx.application.Application;
import javafx.application.Platform;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.scene.paint.Color;
import javafx.scene.shape.Line;
import javafx.stage.Stage;
public class Practise extends Application {
@Override
public void start(Stage primaryStage) {
Button btn = new Button();
final Line l1 = new Line(200,80,200,0);
final int c = 0;
btn.setText("Say 'Hello World'");
btn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
System.out.println("Hello World!");
Platform.runLater(new Runnable() {
Random rn = new Random();
@Override
public void run() {
if(c==0)
{
l1.setStartX(rn.nextInt(400));
l1.setStartY(rn.nextInt(400));
c = 1;
}
else
{
l1.setEndX(rn.nextInt(400));
l1.setEndY(rn.nextInt(400));
c = 0;
}
}
});
}
});
l1.setStroke(Color.YELLOW);
l1.setStrokeWidth(2);
StackPane root = new StackPane();
root.getChildren().add(btn);
root.getChildren().add(l1);
Scene scene = new Scene(root, 400, 400, Color.WHITE);
primaryStage.setTitle("Hello World!");
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
这是我的代码。我希望交替改变线的起点或终点。为此,我创建了一个变量'c',每当我按下按钮时它都会替换它的值。
但问题是编译器迫使我将int c更改为final。这意味着它变成了一个常数,不再符合我的目的。
为什么会发生这种情况?我该如何解决这个问题?
答案 0 :(得分:1)
您在匿名内部类中使用具有本地范围的变量。只有变量为req.user.id
时才能执行此操作。如果需要更改变量的值,可以将其定义为实例变量。
final
点击几下按钮后输出:
Hello World!
C = 0
Hello World!
C = 1
Hello World!
C = 0