-1
,我發現了Cannot make static reference to a non-static method
錯誤,但我不似乎使靜態參考..我的代碼是類似如下...不能使靜態引用非靜態方法
public void run() {
MyClass mc = new MyClass();
mc.method();
}
public void MyClass(){
myothermethod(); //error here.
}
我已經創建了我的類的一個新實例,所以引用不會是靜態的,但它仍然給我同樣的錯誤。
爲了更好地幫助提供非靜態方法更快,張貼[SSCCE(http://pscode.org/sscce.html) 。 –