Module jdk.compiler

Interface CompoundAssignmentTree

所有超级接口:
ExpressionTree, Tree

public interface CompoundAssignmentTree extends ExpressionTree
复合赋值运算符的树节点。使用getKind来确定运算符的类型。例如:
   变量 运算符 表达式
 
参见 Java 语言规范:
15.26.2 复合赋值运算符
自版本:
1.6
  • Nested Class Summary

    Nested classes/interfaces declared in interface com.sun.source.tree.Tree

    Tree.Kind
  • Method Summary

    Modifier and Type
    Method
    Description
    返回复合赋值运算符右侧的表达式。
    返回复合赋值运算符左侧的变量。

    Methods declared in interface com.sun.source.tree.Tree

    accept, getKind
  • Method Details

    • getVariable

      ExpressionTree getVariable()
      返回复合赋值运算符左侧的变量。
      返回:
      变量
    • getExpression

      ExpressionTree getExpression()
      返回复合赋值运算符右侧的表达式。
      返回:
      表达式