类 ExpressionBase
- java.lang.Object
-
- org.meteoinfo.data.mathparser.ExpressionBase
-
- 所有已实现的接口:
IExpression
public abstract class ExpressionBase extends Object implements IExpression
- 作者:
- yaqiang
-
-
构造器概要
构造器 构造器 说明 ExpressionBase()
-
方法概要
所有方法 实例方法 抽象方法 具体方法 修饰符和类型 方法 说明 abstract intgetArgumentCount()Get the number of arguments this expression usesprotected voidvalidate(Object[] numbers)Validates the specified numbers for the expression-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 org.meteoinfo.data.mathparser.IExpression
evaluate
-
-
-
-
方法详细资料
-
getArgumentCount
public abstract int getArgumentCount()
从接口复制的说明:IExpressionGet the number of arguments this expression uses- 指定者:
getArgumentCount在接口中IExpression- 返回:
- The argument count
-
validate
protected void validate(Object[] numbers)
Validates the specified numbers for the expression- 参数:
numbers- The numbers to validate
-
-