2

我有个问题。是否可以在不使用断点的情况下使用热插拔?

当 notch 制作了腔室的前奏(http://www.youtube.com/user/Nizzotch?feature=playlist-comment#p/u)时,他使用了热插拔而不必: - 添加断点 - 保存 - 删除断点 - 恢复这个视频太快了,看不到,但我找不到旧的。

你有想法吗 ?日食选项,宏,插件......?

谢谢

4

1 回答 1

1

取决于您的 JVM,但在 Java 1.5 时代,Eclipse 中的热交换对我来说很有效,而在 Sun 的 HotSpot JVM 上没有任何技巧。这是一个相关的 Sun 的错误。您使用的是哪个 JVM?

public class Test {
    private static int ctr = 0;
    public static void main(String[] args) {
        while (true) {
            method();
            try {
                Thread.sleep(200);
            } catch (InterruptedException e) {
                System.err.println("Interrupted");
            }
        }
    }

    private static void method() {
        System.out.println(ctr);
    }
}

我更改System.out.println(ctr);System.out.println(ctr++);,并且我的输出更改为递增序列。

于 2012-02-27T14:36:25.000 回答