Module  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
        结果
        the statement to be executed if the condition is false