-
- All Superinterfaces:
-
ConditionalLoopTree
,LoopTree
,StatementTree
,树
public interface ForLoopTree extends ConditionalLoopTree
循环语句的基本“for”循环语句的树节点。 例如:for ( initializer ; condition ; update ) statement
- 从以下版本开始:
- 9
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 ExpressionTree
getCondition()
返回此'for'语句的条件表达式。ExpressionTree
getInitializer()
返回此'for'语句的初始化程序表达式。StatementTree
getStatement()
返回此'for'语句中包含的语句。ExpressionTree
getUpdate()
返回此'for'语句的更新表达式。-
Methods inherited from interface jdk.nashorn.api.tree.树
accept, getEndPosition, getKind, getStartPosition
-
-
-
-
方法详细信息
-
getInitializer
ExpressionTree getInitializer()
返回此'for'语句的初始化程序表达式。- 结果
- 初始化器表达式
-
getCondition
ExpressionTree getCondition()
返回此'for'语句的条件表达式。- Specified by:
-
getCondition
在接口ConditionalLoopTree
- 结果
- 条件表达式
-
getUpdate
ExpressionTree getUpdate()
返回此'for'语句的更新表达式。- 结果
- 更新表达式
-
getStatement
StatementTree getStatement()
返回此'for'语句中包含的语句。- Specified by:
-
getStatement
在接口LoopTree
- 结果
- 该声明
-
-