模块  jdk.compiler
软件包  com.sun.source.tree

Interface IfTree

  • 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节
    • 方法详细信息

      • getCondition

        ExpressionTree getCondition()
        返回if语句的条件。
        结果
        条件
      • getThenStatement

        StatementTree getThenStatement()
        如果条件为真,则返回要执行的语句
        结果
        条件为真时要执行的语句
      • getElseStatement

        StatementTree getElseStatement()
        如果条件为false,则返回要执行的语句 null如果没有此类语句,则返回 null
        结果
        the statement to be executed if the condition is false