$1 object reference
Why jvm make a $1 object?
I see the object in wtk objects in wtk memory monitor.
When I call a constructor of another object jvm make a $1copy of object.
I explain by example
ClassA
{
publicvoid methodA
{
..
new ClassB();//in this instruction jvm make in memory classA$1
..
}
}
Class B
{
publicbyte methodB()..
}
Why?

