Eclipse:我们可以在Eclipse中调试应用程序时修改源代码吗
我们可以在调试时修改源代码吗 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,有可能。但在规定的限度内。
例如,可以更改方法内部的代码,但不能更改类内部的代码。
Yes, its possible. But within specified limit.
As an example, it is possible to change code inside a method, but not inside a class.
是 - 进行更改后,控件将返回到方法的顶部节省。
Yes - control will return to the top of the method after you make your changes & save.