import java.util.*;
import javax.annotation.*;
public class Test6
{
private static final @NonNull Map<Test6,Integer> cache= new HashMap<Test6, Integer>();
private final @NonNull String id;
public Test6(@NonNull String id)
{
this.id = id;
}
public static void main(String args[])
{
Test6 foo = new Test6("a");
cache.put(foo,1);
// System.out.println("inside foo******"+cache.get(foo));
// System.out.println("inside******"+cache.get(new Test6("a")));
System.out.println(cache.get((new Test6("a"))).intValue());
}
}
我應該實現一些防止此程序崩潰的方法嗎?Java程序崩潰
您可以發佈一些關於您在程序崩潰時獲得的錯誤類型的其他信息嗎? – therealrootuser 2014-10-09 06:11:12
你能更具體嗎?你在嘗試什麼? – 2014-10-09 06:12:01
你是什麼意思?它的程序不是物理服務器。您可能會在.intValue()調用中獲得NullPointerException。我們稱之爲異常而不是崩潰。 – Nazgul 2014-10-09 06:19:27