-
- All Superinterfaces:
-
StatementTree
,树
public interface IfTree extends StatementTree
一个用于if
语句的树节点。 例如:if ( condition ) thenStatement if ( condition ) thenStatement else elseStatement
- 从以下版本开始:
- 1.6
- See The Java™ Language Specification:
- 第14.9节
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 ExpressionTree
getCondition()
返回if语句的条件。StatementTree
getElseStatement()
如果条件为false,则返回要执行的语句,如果没有这样的语句,则返回null
。StatementTree
getThenStatement()
如果条件为真,则返回要执行的语句
-
-
-
方法详细信息
-
getCondition
ExpressionTree getCondition()
返回if语句的条件。- 结果
- 条件
-
getThenStatement
StatementTree getThenStatement()
如果条件为真,则返回要执行的语句- 结果
- 条件为真时执行的语句
-
getElseStatement
StatementTree getElseStatement()
如果条件为false,则返回要执行的语句,如果没有这样的语句,则返回null
。- 结果
- the statement to be executed if the condition is false
-
-