self * other -> Complex[permalink][rdoc][edit]-
selfにotherを掛けた値(=積)を返します。Complexオブジェクトを左項とする算術演算子*はこのメソッドの呼び出しになります。- [PARAM]
other: -
selfに対する乗数
p Complex(1, 2) * 2 # => (2+4i) p Complex(1, 2) * Complex(2, 3) # => (-4+7i) p Complex(1, 2) * Rational(1, 2) # => ((1/2)+(1/1)*i) - [PARAM]