operator<< (<complex>)
出力ストリームに指定される複素数を挿入します。
template<class Type, class Elem, class Traits>
basic_ostream<Elem, Traits>&
operator<< (
basic_ostream<Elem, Traits>& _Ostr,
const complex<Type>& _Right
);
パラメーター
_Ostr
複素数が入力される出力ストリーム。_Right
出力ストリームに入力する複素数
戻り値
デカルト書式指定 _Ostr に複素数の値を書き込みます: 実際 、部分と部分 )。
解説
出力ストリームは、複素数のフォームを受け入れる、既定の出力形式はデカルトの形式ですようにオーバーロードされます。
使用例
// complex_op_insert.cpp
// compile with: /EHsc
#include <complex>
#include <iostream>
int main( )
{
using namespace std;
double pi = 3.14159265359;
complex <double> c1 ( 3.0 , 4.0 );
cout << "Complex number c1 = " << c1 << endl;
complex <double> c2 ( polar ( 2.0 , pi / 6 ) );
cout << "Complex number c2 = " << c2 << endl;
// To display in polar form
double absc2 = abs ( c2 );
double argc2 = arg ( c2 );
cout << "The modulus of c2 is: " << absc2 << endl;
cout << "The argument of c2 is: "<< argc2 << " radians, which is "
<< argc2 * 180 / pi << " degrees." << endl << endl;
}
必要条件
ヘッダー: <complex>
名前空間: std