-
- All Superinterfaces:
-
StatementTree
,树
public interface SynchronizedTree extends StatementTree
synchronized
语句的树节点。 例如:synchronized ( expression ) block
- 从以下版本开始:
- 1.6
- See The Java™ Language Specification:
- 第14.19节
-
-
方法详细信息
-
getExpression
ExpressionTree getExpression()
返回要同步的表达式。- 结果
- 表达方式
-
getBlock
BlockTree getBlock()
返回synchronized
语句的块。- 结果
- 块
-
-