Possible Duplicate:
Call class instance method while debugging in eclipse
有没有一种方法可以在调试期间更改列表元素的顺序?
如何在Eclipse上执行此操作?
最佳答案
您可以modify variables,(see also)。最后签出:Call class instance method while debugging in eclipse。一旦可以在调试期间调用任意方法,只需调用:
list.add(42, yourElement);
list.remove(7);
或您要对该列表执行的任何操作。
PS:在intellij中,您可以在断点期间run arbitrary expression during debugging。
关于java - 在调试过程中重新组织列表顺序,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12105599/