次の方法で共有


complex<double>

順序付けされたオブジェクトのペア (いずれも double 型) を格納するオブジェクトについて説明します。最初のオブジェクトが複素数の実数部、2 番目のオブジェクトが虚数部を表します。

構文

template <>
class complex<double> {
public:
    constexpr complex(
    double RealVal = 0,
    double ImagVal = 0);

constexpr complex(const complex<double>& complexNum);

constexpr explicit complex(const complex<long double>& complexNum);
// rest same as class template complex
};

パラメーター

RealVal
構築される複素数の実数部の double 型の値。

ImagVal
構築される複素数の虚数部の double 型の値。

complexNum
float 型または long double 型で、その実数部と虚数部の値が、構築される double 型の複素数の初期化に使用される複素数。

戻り値

double 型の複素数。

解説

クラス テンプレート complex の double 型の complex クラスに対する明示的な特殊化と、クラス テンプレートによって定義されるコンストラクター内でのみ使用するクラス テンプレートとは異なります。 float から double への変換は暗黙的に行えますが、long double から double への変換は explicit でなければなりません。 explicit を使用すると、割り当て構文を使用した型変換による開始は禁止されます。

クラス テンプレート complex の詳細については、「complex クラス」を参照してください。 クラス テンプレート complex のメンバー一覧については、以下を参照してください。

// complex_comp_dbl.cpp
// compile with: /EHsc
#include <complex>
#include <iostream>

int main( )
{
   using namespace std;
   double pi = 3.14159265359;

   // The first constructor specifies real & imaginary parts
   complex <double> c1 ( 4.0 , 5.0 );
   cout << "Specifying initial real & imaginary parts,\n"
        << "as type double gives c1 = " << c1 << endl;

   // The second constructor initializes values of the real &
   // imaginary parts using those of complex number of type float
   complex <float> c2float ( 4.0 , 5.0 );
   complex <double> c2double ( c2float );
   cout << "Implicit conversion from type float to type double,"
        << endl << "gives c2double = " << c2double << endl;

   // The third constructor initializes values of the real &
   // imaginary parts using those of a complex number
   // of type long double
   complex <long double> c3longdouble ( 4.0 , 5.0 );
   complex <double> c3double ( c3longdouble );
   cout << "Explicit conversion from type float to type double,"
        << endl << "gives c3longdouble = " << c3longdouble << endl;

   // The modulus and argument of a complex number can be recovered
   double absc3 = abs ( c3longdouble );
   double argc3 = arg ( c3longdouble );
   cout << "The modulus of c3 is recovered from c3 using: abs ( c3 ) = "
        << absc3 << endl;
   cout << "Argument of c3 is recovered from c3 using:" << endl
        << "arg ( c3 ) = " << argc3 << " radians, which is "
        << argc3 * 180 / pi << " degrees." << endl;
}
/* Output:
Specifying initial real & imaginary parts,
as type double gives c1 = (4,5)
Implicit conversion from type float to type double,
gives c2double = (4,5)
Explicit conversion from type float to type double,
gives c3longdouble = (4,5)
The modulus of c3 is recovered from c3 using: abs ( c3 ) = 6.40312
Argument of c3 is recovered from c3 using:
arg ( c3 ) = 0.896055 radians, which is 51.3402 degrees.
*/

必要条件

ヘッダー: <complex>

名前空間: std

関連項目

complex クラス
C++ 標準ライブラリ内のスレッド セーフ