complex::operator =
指定數字至目標群組數字,表示這個數字可能很複雜或型別與其指定複數的虛擬和虛構區段。
template<class Other>
complex<Type>& operator=(
const complex<Other>& _Right
);
complex<Type>& operator=(
const Type& _Right
);
參數
- _Right
複雜數值或與目標群組數字相同的參數數目。
傳回值
指定為參數所指定的數值的複雜數值。
備註
多載作業,因此簡單的算術運算可以執行,不需要資料轉換至特定格式。
範例
// complex_op_as.cpp
// compile with: /EHsc
#include <complex>
#include <iostream>
int main( )
{
using namespace std;
double pi = 3.14159265359;
// Example of the first member function
// type complex<double> assigned to type complex<double>
complex <double> cl1 ( 3.0 , 4.0 );
complex <double> cr1 ( 2.0 , -1.0 );
cout << "The left-side complex number is cl1 = " << cl1 << endl;
cout << "The right-side complex number is cr1 = " << cr1 << endl;
cl1 = cr1;
cout << "The complex number cr1 assigned to the complex number cl1 is:"
<< "\n cl1 = cr1 = " << cl1 << endl;
// Example of the second member function
// type double assigned to type complex<double>
complex <double> cl2 ( -2 , 4 );
double cr2 =5.0;
cout << "The left-side complex number is cl2 = " << cl2 << endl;
cout << "The right-side complex number is cr2 = " << cr2 << endl;
cl2 = cr2;
cout << "The complex number cr2 assigned to the complex number cl2 is:"
<< "\n cl2 = cr2 = " << cl2 << endl;
cl2 = complex<double>(3.0, 4.0);
cout << "The complex number (3, 4) assigned to the complex number cl2 is:"
<< "\n cl2 = " << cl2 << endl;
}
需求
標題: <complex>
命名空間: std