std::complex::operator+(unary), operator-(unary)
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
template< class T > complex<T> operator+( const complex<T>& val ); |
(1) | |
template< class T > complex<T> operator-( const complex<T>& val ); |
(2) | |
实现类似物的一元算术运算符用于复数.
原文:
Implements the analogs of the unary arithmetic operators for complex numbers.
1)
返回其参数的值
2)
否定的说法
[编辑] 参数
val | - | 复数的说法
|
[编辑] 返回值
1)
副本的说法,complex<T>(val)
原文:
a copy of the argument, complex<T>(val)
2)
否定的说法,complex<T>(-val.real(), -val.imag())
原文:
negated argument, complex<T>(-val.real(), -val.imag())
[编辑] 另请参阅
进行复数算术,两个复杂的值或一个复杂的和一个标量 原文: performs complex number arithmetics on two complex values or a complex and a scalar (函数模板) |