报告由不带括号的不同运算符组成的二元、条件或 instanceof 表达式。 由于运算符的优先级规则不同,此类表达式的可读性可能较低。

示例:


  int n = 3 + 9 * 8 + 1;

在应用快速修复后:


  int n = 3 + (9 * 8) + 1;