实数
提取复数的实分量。
template<class T>
T real(
constexpr complex<T>& ComplexNum
);
参数
- ComplexNum
要提取其实部的复数。
返回值
作为全局函数的复数的实部。
备注
此模板函数无法用于修改复数的实部。 要更改实部,必须为新复数分配分量值。
示例
// complex_real.cpp
// compile with: /EHsc
#include <complex>
#include <iostream>
int main( )
{
using namespace std;
complex <double> c1 ( 4.0 , 3.0 );
cout << "The complex number c1 = " << c1 << endl;
double dr1 = real ( c1 );
cout << "The real part of c1 is real ( c1 ) = "
<< dr1 << "." << endl;
double di1 = imag ( c1 );
cout << "The imaginary part of c1 is imag ( c1 ) = "
<< di1 << "." << endl;
}
要求
标头:<complex>
命名空间: std