次の方法で共有


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 クラス