[問題] static method
public class test {
public static void main(String args[]) {
System.out.print(more(2,4,4,4));
}
public static int more(int... num)
{
int total=0;
for(int a:num)
total+=a;
return total;
}
}
為什麼在class test底下
more method一定要加static 才能給過?
而其他class則不需用呢?
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 61.221.120.127
討論串 (同標題文章)
以下文章回應了本文:
完整討論串 (本文為第 1 之 8 篇):