다음을 통해 공유


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