다음을 통해 공유


complex::real

복소수의 실수 구성 요소를 가져오거나 설정합니다.

constexpr T real( ) const;
T real(const T& Right);

매개 변수

  • Right
    실수 값을 추출할 복소수입니다.

반환 값

복소수의 실수 부분입니다.

설명

복소수 a + bi의 경우 실수 부분 또는 구성 요소는 Re(a + bi) = a입니다.

예제

// complex_class_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 = c1.real ( );
   cout << "The real part of c1 is c1.real ( ) = "
        << dr1 << "." << endl;

   double di1 = c1.imag ( );
   cout << "The imaginary part of c1 is c1.imag ( ) = "
        << di1 << "." << endl;
}
                 

요구 사항

헤더: <complex>

네임스페이스: std

참고 항목

참조

complex 클래스