问答详情
源自:8-9 Java 中的 static 使用之静态方法

我这样对吗?为什么?

public class UseStatic {
 static int score1 = 86;
 static int score2 = 92;
 public static void sum(){
  System.out.println(score1+score2);
 }
}

public class UstTest {

 public static void main(String[] args) {
 UseStatic u = new UseStatic();
 u.sum();
 }
}

如果错了,为什么?谢谢!!

提问者:泡泡糖粘在头上 2015-05-25 21:09

个回答

  • Rober_Lin
    2015-05-25 21:35:50
    已采纳

    对是对着呢,但是在一个java文件中是只能有一个public类的