JAVA编写一个完整的计数器类Count,写出源代码
答案:1 悬赏:60 手机版
解决时间 2021-03-14 02:24
- 提问者网友:自食苦果
- 2021-03-13 21:08
JAVA编写一个完整的计数器类Count,写出源代码
最佳答案
- 五星知识达人网友:往事隔山水
- 2021-03-13 21:28
public class Count{ int countValue; Count(){ countValue=0; } public void increment() { countValue++; } public void decrement() { countValue--; } public void reset() { countValue=0; } public int getCountValue(){ return countValue; } public static void main(String args[]){ Count c = new Count(); c.increment(); System.out.println(c.getCountValue()); c.reset(); System.out.println(c.getCountValue()); } } 运行结果: 1 0
采纳哦
采纳哦
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯