-
- All Superinterfaces:
-
StatementTree
,树
public interface ThrowTree extends StatementTree
throw
语句的树节点。 例如:throw expression;
- 从以下版本开始:
- 1.6
- See The Java™ Language Specification:
- 第14.18节
-
-
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 ExpressionTree
getExpression()
返回要抛出的表达式。
-
-
-
方法详细信息
-
getExpression
ExpressionTree getExpression()
返回要抛出的表达式。- 结果
- the expression
-
-