operator ~ 抽象方法

int operator ~()

位取反操作符。

将此对象视为足够大的二进制补码整数,结果是一个位取反的数。

这会将任何整数 x 映射到 -x - 1

实现

int operator ~();