如何在eclipse的调试中获取方法返回的值?

时间:2011-12-05 11:54:21

标签: java eclipse debugging return return-value

  

可能重复:
  Can I find out the return value before returning while debugging in Eclipse

我有这样的方法

return doSomething(param1, param2);

doSomething在数据库中做了一些事情,所以我宁愿不再执行它。如何在debug中获取返回值?

P.S。我知道我可以为变量提取值,但有时这不会起作用(hotswap并不总是有效),如果我不需要(它不是我的),那么不更改代码会很酷。另外我知道checkstyle在返回之前有一个反对赋值给变量的规则,因此没有必要使代码不那么“质量”。

0 个答案:

没有答案