次の方法で共有


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

参照

関連項目

complex Class