我编写了一个简单的程序来理解VisualVM的工作原理。这是完整的代码:
package memorygames;
public class MemoryGames
{
static class A {
private int i;
private String s;
A(int i, String s)
{
this.i = i;
this.s = s;
}
public int getI()
{
return i;
}
public String getS()
{
return s;
}
}
public static void main(String[] args) {
A a = new A(23, "hello");
while(true) {
System.out.println(a.getS());
try
{
Thread.sleep(1000);
}
catch (InterruptedException e)
{
e.printStackTrace();
}
}
}
}
现在我在VisualVM中创建了我的应用程序的HeapDump。我看到了'A'类的实例,但是s变量是空的!它的值等于null。 'i'变量保持正确的值23。
为什么会这样?
更新: 可能是我误用了VisualVM?这是我的截图: http://oi42.tinypic.com/2091qfl.jpg
更新: 不确定,但可能这是一些内存优化的结果。我添加了
while(true) {
a.setS(new String("a-setter " + Math.random()));
(...)
}
...现在我可以看到变量中的字符串值。我不知道其他人是否能真正看到堆中的结果与我的不同。
答案 0 :(得分:0)
这可能是您用来运行示例的JDK的问题。你能试试不同版本的JDK吗? JDK 7u40或JDK 8预览构建?它适用于我使用JDK 7u40。