⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 counter.java

📁 一个使用的搜索引擎
💻 JAVA
字号:
package ir.utilities;/** A simple wrapper data structure for storing an integer count * as an Object that can be put into lists, maps, etc. and then * incremented and decremented. * * @author Ray Mooney */public class Counter {    /** The integer count */    protected int count = 0;        /** Increment and return the new count */    public int increment() {	return ++count;    }    /** Increment by n and return the new count */    public int increment(int n) {	count = count + n;	return count;    }    /** Decrement and return the new count */    public int decrement() {	return --count;    }    /** Decrement by n and return the new count */    public int decrement(int n) {	count = count - n;	return count;    }    /** Get the current count */    public int getValue() {	return count;    }    /** Set the current count */    public int setValue(int value) {	count = value;	return count;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -