java - Eclipse Debug模式更改变量

标签 java eclipse debugging variables

当使用 Eclipse IDE 进行 Java 编程时,我有时会使用调试功能。很多时候我喜欢在程序运行时实时更改变量。然而,我经常发现更改某些变量实际上不会影响当前正在运行的程序。

我的问题是:调试有一定的规则吗?哪些变量在调试器或其他东西的范围内?

如果这是一个愚蠢的问题,我很抱歉。我对 Eclipse 中的调试和一般编程还相当陌生。

下面的代码是一个示例。如果很难阅读或其他什么,我很抱歉,但问题是:在 Ball 类中,每当我更改最终变量(例如 PARTICLES_PER_CLICKSPEED)时,它们都会更新实时,我可以看到程序窗口中的差异,但是当我更改 RADIUS 变量时,它什么也不做,即使它与其他两个变量属于同一类。

public class Main {

    public static final int WIDTH = 1280;
    public static final int HEIGHT = 720;
    public static Ball[] ball = new Ball[100000];
    public Main() {
        try {
            Display.setDisplayMode(new DisplayMode(WIDTH, HEIGHT));
            Display.create();
            Display.setTitle("Game Engine");

        } catch (LWJGLException e) {

            e.printStackTrace();
        }

        glMatrixMode(GL_PROJECTION);
        glLoadIdentity();
        glOrtho(0, WIDTH, HEIGHT, 0, 1, -1);
        glMatrixMode(GL_MODELVIEW);


        boolean[] doOnce = new boolean[10];
        boolean gravity = false;
        while (!Display.isCloseRequested()) {

            if (Mouse.isButtonDown(1) || Mouse.isButtonDown(1)) {
                if (!doOnce[0]) {
                    Ball.createParticles();
                    doOnce[0]=true;
                }

            } else {
                doOnce[0] = false;
            }

            glClear(GL_COLOR_BUFFER_BIT);

            for (int i = 1; i <= Ball.ballAmount; i++) {
                ball[i].updatePosition(gravity);
                if (Mouse.isButtonDown(0)) {
                    gravity = true;
                } else {
                    gravity = false;
                }

                if (ball[i].position.x > 0 && ball[i].position.y > 0 && ball[i].position.x < WIDTH && ball[i].position.y < HEIGHT) {
                    glBegin(GL_TRIANGLE_FAN);
                    glVertex2d(ball[i].position.x, ball[i].position.y);
                    for(int u=0;u<=360;u+=5){
                        glVertex2d(ball[i].position.x+Math.cos(u)*Ball.RADIUS, ball[i].position.y+Math.sin(u)*Ball.RADIUS);
                    }
                    glEnd();
                }

            }
            System.out.println("Particle Amount: " + Ball.ballAmount);

            Display.update();
            Display.sync(60);
        }
        Display.destroy();
        System.exit(0);
    }

    public static void main(String[] args) {
        new Main();
    }
}

class Ball {

    public Vector2f position, velocity;
    public static final int RADIUS = 10;
    public static final int INITIAL_SPEED = 5;
    public static final int SPEED = 2;
    public static final int PARTICLES_PER_CLICK = 50;

    public static int ballAmount = 0;

    public double r, g, b;

    public static Random rnd = new Random();

    public Ball(double x, double y) {
        int angle = rnd.nextInt(360);
        position = new Vector2f((float) x, (float) y);
        velocity = new Vector2f((float) Math.cos(angle) * rnd.nextFloat() * INITIAL_SPEED, (float) Math.sin(angle) * rnd.nextFloat() * INITIAL_SPEED);

        this.r = rnd.nextDouble();
        this.g = rnd.nextDouble();
        this.b = rnd.nextDouble();
    }

    public void updatePosition(boolean gravity) {
        this.position.x += this.velocity.x * SPEED;
        this.position.y += this.velocity.y * SPEED;
        if (gravity) {
            double dx = this.position.x - Mouse.getX();
            double dy = this.position.y - (Main.HEIGHT - Mouse.getY());
            double distance = Math.sqrt(dx * dx + dy * dy);

            this.velocity.x -= (this.position.x - Mouse.getX()) / distance;
            this.velocity.y -= (this.position.y - (Main.HEIGHT - Mouse.getY())) / distance;
        } else {
            this.velocity.x *= 0.99;
            this.velocity.y *= 0.99;
        }

    }

    public static void createParticles() {
        for (int i = 1; i <= PARTICLES_PER_CLICK; i++) {

            ballAmount += 1;
            Main.ball[ballAmount] = new Ball(Mouse.getX(),Main.HEIGHT- Mouse.getY());
        }
    }

}

最佳答案

如果优化器看到最终变量,它就知道它的值不会改变。它用这些知识做什么取决于它。它可能什么也不做(就像在您的 PARTICLES_PER_CLICK 或 SPEED 情况下发生的情况一样),或者它可能只是用各处的实际值替换该变量的所有出现。除了不要更改最终变量的值之外,没有特殊规则。

关于java - Eclipse Debug模式更改变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27809435/

相关文章:

eclipse - Eclipse上EGit的优化建议

android - 如何在 Android Studio 中添加 Eclipse Code Formatter 文件

ios - 在 Xcode 中使用信号量进行调试 - Grand Central Dispatch - iOS

node.js - 如何将 Visual Studio 代码调试器附加到在 nginx 代理后面的 docker 机器上运行的 Node.JS 应用程序

java - Vaadin JPAContainer : ManytoOne relation with EmbeddedID

java - 从 web 服务返回大块二进制数据的最佳方法是什么?

java - 试图从 Tomcat 转移到 Jetty 以在工作站上进行测试,tomcat vs jetty

c++ - 尝试调试 TensorFlow C++ 代码时 GDB 退出/崩溃

python - 如何与 Cloud Foundry 上的 Celery 通信?

java - Android 10 - 使用 PackageManager 安装新版本的 apk 而不是 Intents 并没有真正起作用