I want to see the stack frame of a method from a heapdump using mat. But I can't see any primitive type in the callstack, but types like String can be displayed from the threadDetail.
public int fun(int x, int y) {
int d = this.hashCode();
int a = x + y;
String jj = "123";
sleep(100000L);
return a + d + jj.length();
}
I can only see the object instance and String jj in the stackframe. I want to know if it's the problem of MAT, or the heapdump doesn't contain primitive type variables.