在Component中使用getLocation()的NullPointerException

时间:2015-08-07 14:18:17

标签: java jframe

我一直从这段代码中得到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;

}

1 个答案:

答案 0 :(得分:0)

我不认为此代码导致空指针异常。这段代码每次进入其他地方。它应该在其他地方。发布你的堆栈跟踪。