primitivevalue.java
来自「clips源代码」· Java 代码 · 共 35 行
JAVA
35 行
package CLIPSJNI;public abstract class PrimitiveValue { private Object theValue; /*******************/ /* PrimitiveValue: */ /*******************/ protected PrimitiveValue( Object value) { theValue = value; } /*************/ /* getValue: */ /*************/ public Object getValue() { return theValue; } /*************/ /* toString: */ /*************/ public String toString() { if (theValue != null) { return theValue.toString(); } return ""; } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?