Eclipse:我们可以在Eclipse中调试应用程序时修改源代码吗

发布于 2024-12-07 18:54:55 字数 390 浏览 0 评论 0原文

我们可以在调试时修改源代码吗 Eclipse 内的应用程序

嗨,

假设我在 Eclipse IDe 下有这段代码,

          public void kk()
        {
        try
        {
        int jj = 20;

        if(jj==20)
            throw new Exception();

        }
        catch(Exception e)
        {
            e.printStackTrace();
        }
}

假设由于条件 jj==20,代码已进入 catch 块内,我们可以修改代码并恢复调试控制吗?

Can we make modifications on to the source code while debugging the
Application inside Eclipse

Hi ,

Assume that i have this piece of code under Eclipse IDe

          public void kk()
        {
        try
        {
        int jj = 20;

        if(jj==20)
            throw new Exception();

        }
        catch(Exception e)
        {
            e.printStackTrace();
        }
}

Assume that the code has entered inside the catch block due to the condition jj==20 , can we modify the code and bring the debug control back ??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

開玄 2024-12-14 18:54:55

是的,有可能。但在规定的限度内。

例如,可以更改方法内部的代码,但不能更改类内部的代码。

Yes, its possible. But within specified limit.

As an example, it is possible to change code inside a method, but not inside a class.

春花秋月 2024-12-14 18:54:55

是 - 进行更改后,控件将返回到方法的顶部节省。

Yes - control will return to the top of the method after you make your changes & save.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文