JAVA累加。。
发布网友
发布时间:2022-05-01 07:09
我来回答
共3个回答
热心网友
时间:2022-06-25 22:02
public class Student {
private String name;
private int score;
private static int totle = 0;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Student(String name, int score) {
this.name = name;
this.score = score;
this.totle = this.totle+this.score;
}
public static void main(String[] args) throws IOException {
Student s1 = new Student("s1",90);
Student s2 = new Student("s2",90);
System.out.print(s2.totle);
}
}
结果是
180
热心网友
时间:2022-06-25 22:03
计算创建对象的个数什么的当然要用 静态变量了
静态变量只有1个拷贝 只属于类本身 不属于具体那个实例
热心网友
时间:2022-06-25 22:03
如果是数据库里读的话直接sum下不久得了,这么麻烦