operator ~ 抽象方法

int operator ~()

位取反操作符。

this 作为足够大的二进制补码整数处理,结果是一个位取反后的数字。

这把任何整数 x 映射为 -x - 1

实现

int operator ~();