다음을 통해 공유


real

복잡 한 숫자의 실제 구성 요소를 추출합니다.

template<class Type>
   Type real(
      const complex<Type>& _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