我一直从这段代码中得到NullPointerException,但我无法弄清楚原因。
public static String getPMTLocation(){
Component me = null;
String find;
if(me!=null){
Point location = me.getLocation();
find = location.toString();
}else{
find = "NullPointerException caught";
}
return find;
}
答案 0 :(得分:0)
我不认为此代码导致空指针异常。这段代码每次进入其他地方。它应该在其他地方。发布你的堆栈跟踪。