1

Suppose we are in a middle of debugging a application and you have a linkedlist, hashmap or other collection framework implementation with 1000 of items. Is there a possibility to inspect the list or map over a given item while debugging and not programmatically ? Suppose we are using eclipse as a ide.

4

1 に答える 1

6

あなたのDebug視点では

ビューがありVariables、現在のコンテキストですべてのオブジェクトの内部構造と要素を確認できます。

ビューではExpressions、カスタムの 1 行式を追加して任意の結果を得ることができます。

おそらく、Display一連の Java 式を実行できるビューが役立つでしょう。

于 2012-11-12T11:59:43.277 に答える