这是我的课..
public class Oop {
int count = 0;
public static void main(String args[])
{
this.count(15, 30);
System.out.print(this.count);
}
public void count(int start, int end)
{
for(;start<end; start++)
{
this.count = this.count + start;
}
}
}
我不能在 main 函数中调用 count 函数。原因是静态和非静态函数。我对Java真的很陌生。我如何在 main 中使用 count ?我需要学习什么?