std::complex::complex
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
complex( const T& re = T(), const T& im = T() ); |
(1) | |
complex( const complex& rhs ); |
(2) | |
构建std::complex对象.
1) 构造由实部和虚部的复数.
2) 原文:
Constructs the complex number from real and imaginary parts.
拷贝构造函数。构造对象的副本的内容
other
.原文:
Copy constructor. Constructs the object with the copy of the contents of
other
.[编辑] 参数
re | - | 的实部
|
im | - | 虚数部分
|
other | - | 另一个复杂的,作为源使用
|
[编辑] 另请参阅
分配的内容 (公共成员函数) |