lowLatency
lowLatency

Reputation: 5654

debugging not able to inspect the variables

while debugging in eclipse
the problem is: String.hashCode() line: 1489 [local variables unavailable]
thus, not able to inspect the values of variables ECLIPSE debug screenshot

please help me on this by providing some pointers

Hi Tomasz Nurkiewicz Thanks for the efforts, i took a new jdk (haing all the class details) after catching on these How to debug .class files in ECLIPSE? and http://jdk6.java.net/download.html but then also facing same issue................ eclipse debug image after changes

Upvotes: 3

Views: 7202

Answers (1)

Tomasz Nurkiewicz
Tomasz Nurkiewicz

Reputation: 340723

JDK classes aren't compiled with debugging information, hence you can't see local variables during debugging. You'll have to rebuild JDK or use development version, see: Step through JDK source code in IntelliJ IDEA and Enabling debugging inside JRE classes.

Upvotes: 5

Related Questions