operator unary- method

T operator unary-()

负数

Implementation

T operator -() {
  return valueOf(-value);
}