Possible Duplicate:
What is the reason behind “non-static method cannot be referenced from a static context”?
public void Sort(){
*some code*
}
public void displayResults()
{*more code*
}
public static void main(String[] args)
{
Sort();
displayResults();
}
我为什么会发现这一错误? 我有这种看法;在另一个抽象的类别中,这一类别正在扩大。
- 引信