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