-
- All Superinterfaces:
-
ExpressionTree
,树
public interface CompoundAssignmentTree extends ExpressionTree
- 从以下版本开始:
- 9
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 ExpressionTree
getExpression()
返回此作业的右侧(RHS)。ExpressionTree
getVariable()
返回此作业的左侧(LHS)。-
Methods inherited from interface jdk.nashorn.api.tree.树
accept, getEndPosition, getKind, getStartPosition
-
-
-
-
方法详细信息
-
getVariable
ExpressionTree getVariable()
返回此作业的左侧(LHS)。- 结果
- 左手边(LHS)表达
-
getExpression
ExpressionTree getExpression()
返回此作业的右侧(RHS)。- 结果
- 右侧(RHS)表达式
-
-