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

Interface CatchTree

  • All Superinterfaces:

    public interface CatchTree
    extends 
    try语句中catch块的树节点。 例如:
      catch ( parameter )
           block 
    从以下版本开始:
    1.6
    See The Java™ Language Specification:
    第14.20节
    • 方法详细信息

      • getParameter

        VariableTree getParameter()
        返回catch变量。 多捕获变量将具有UnionTypeTree作为变量的类型。
        结果
        catch变量
      • getBlock

        BlockTree getBlock()
        返回catch块。
        结果
        捕获块