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

Interface AssertTree

  • All Superinterfaces:
    StatementTree

    public interface AssertTree
    extends StatementTree
    assert语句的树节点。 例如:
      assert condition ;
    
       assert condition : detail ; 
    从以下版本开始:
    1.6
    See The Java™ Language Specification:
    第14.10节
    • 方法详细信息

      • getCondition

        ExpressionTree getCondition()
        返回被断言的条件。
        结果
        条件
      • getDetail

        ExpressionTree getDetail()
        返回详细表达式。
        结果
        细节表达