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

📄 globalcounter.java

📁 一个开源的JAVA虚拟机
💻 JAVA
字号:
public class GlobalCounter {    public final static int initial_value = 0;    private static int count = initial_value;    public static synchronized void reset() { set(initial_value); }    public static synchronized void set(int i) { count = i; }    public static synchronized void inc() { ++count; }    public static synchronized void dec() { --count; }    public static int value() { return count; }}

⌨️ 快捷键说明

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