📄 indexedbvalue.java
字号:
/**
* Description: provide a boolean value with an index
*
* @ Author Create/Modi Note
* Xiaofeng Xie Apr 18, 2005 xiaofengxie@tsinghua.org.cn
*/
package Global.basic;
public class IndexedBValue {
public int index = 0; //the index
public boolean value = true; //The value
public IndexedBValue() {}
public IndexedBValue(int i, boolean v) {
index = i;
value = v;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -