📄 mutableinteger.java
字号:
package org.antlr.misc;/** Java won't let you modify an Integer; not sure how that's more * efficient, but...here's one that let's you modify it. * Frightening I have to implement this myself. Blech. */public class MutableInteger { public int value; public MutableInteger() { this(0); } public MutableInteger(int value) { this.value = value; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -