62,620
社区成员
发帖
与我相关
我的任务
分享
public class Counter{
private int count; //计数值
public Counter(){
this(0);
}
public Counter(int count){
this.count=count;
}
public void setCount(int count){
this.count=count;
}
public int getCount(){
return count;
}
public void add(int step){
count+=step;
}
}