报告使用其值时总是求反的布尔变量或字段。

示例:


      void m() {
        boolean b = true; //总是反转布尔变量 'b'
        System.out.println(!b);
      }