Dave Griffiths

353
Reputation
52 views

Registered User

Name Dave Griffiths
Member for 1 year
Seen 2 days ago
Website
Location Winchester, UK
Age 53
Nov
4
comment Java instance variable visibility (ThreadLocal)
There is an example here: fuseyism.com/classpath/doc/…
Nov
4
asked Java instance variable visibility (ThreadLocal)
Nov
2
answered Deadlock in Java
Sep
18
awarded  Yearling
Sep
4
comment When is a Java local variable eligible for GC?
Sure, but in order to write correct code, you need to be easily able to understand the rules. The link you quote mentions invisibility being a source of confusion to developers but then just adds to it by referring to the scope of a try/catch block. The reachable definition you quote is much more understandable IMO. (Of course if the developers weren't using finalisers the way they are none of this would be a problem!)
Sep
4
answered How do you crash a JVM?
Sep
3
awarded  Commentator
Sep
3
comment When is a Java local variable eligible for GC?
I think that quote may be slightly misleading as it still encourages us to think in terms of local variable slots in a stack frame whereas the JIT compiler may optimize away any such notion. The earlier quote is maybe more accurate. For instance another colleague suggested that putting "test = null;" after the while loop would prevent the GC because it is keeping the variable "in use" but actually it makes no difference (doesn't count as "computation")
Sep
2
comment When is a Java local variable eligible for GC?
Excellent link Yishai, thanks! I find that case to be even more surprising - i.e. even though it is passed as a parameter to another method it is still eligible for GC
Sep
2
comment When is a Java local variable eligible for GC?
I know, but not my code and it's anyway just a simplified testcase from a larger app that depends on variables "in scope" not disappearing. What I'm most interested in is whether there is any documentation that defines the notion of scope and states when an implementation is free to GC. Because a lot of people believe that the above test should work because the variable only drops out of scope (and becomes eligible for GC) when the run method returns.
Sep
2
comment When is a Java local variable eligible for GC?
The reason why we care is because of the finalize method. That is causing the program to fail. Yes, there are easy ways to fix it but the person who raised this believes that the test instance should not be GC'd before the run method exits because it is still "in scope". This testcase is a reduced version of a larger and more complex app.
Sep
2
comment When is a Java local variable eligible for GC?
No, the instance of test is being GC'd during the while loop and before run completes. Because it is no longer actively in use (even though "in scope" as normally understood). Try it and see.
Sep
2
awarded  Scholar
Sep
2
accepted Using Samba for random access without mounting the file system?
Sep
1
asked When is a Java local variable eligible for GC?