2
votes
6answers
284 views
When is a Java local variable eligible for GC?
Given the following program:
import java.io.*;
import java.util.*;
public class GCTest {
public static void main(String[] args) throws Exception {
List cache = new Arr …
2
votes
1answer
72 views
Java instance variable visibility (ThreadLocal)
In the class ReentrantReadWriteLock is the following curious comme …
-2
votes
Closing a Java FileInputStream.
Are you concerned primarily with getting a clean report from FindBugs or with having code that works? These are not necessarily the same thing. Your original code is fine (although I would get rid …
0
votes
Overriding equals and hashCode in Java
Make sure you produce a reasonably pseudo-random distribution of hashCodes otherwise you may end up with a lot of hash table entries in the same bucket and your performance will suffer. One simple …
0
votes
Generating a globally unique identifier in Java
public class UniqueID {
private static long startTime = System.currentTimeMillis();
private static long id;
public static synchronized String getUniqueID() {
return "id …
0
votes
How do you crash a JVM?
Use this:
import sun.misc.Unsafe;
public class Crash {
private static final Unsafe unsafe = Unsafe.getUnsafe();
public static void crash() {
unsafe.putAddress(0, 0) …
0
votes
Deadlock in Java
Note that there is a type of deadlock using the concurrent package that is very hard to debug. That is where you have a ReentrantReadWriteLock and one thread grabs the read lock and then (say) trie …
