共用方式為


complex::real

取得或設定複雜數值的實際的元件。

Type real( ) const;
Type real(const Type& _Right);

參數

  • _Right
    實際值代表要擷取的複雜數值。

傳回值

複數的實數部分。

備註

對於複雜數值 、+ Double、執行內部或元件 (如需+ double) = AMPL lT AMPL gT。

範例

// 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 Class