Freigeben über


operator<< (<complex>)

Fügt eine komplexe Zahl ein, die in den Ausgabestream angegeben wird.

template<class Type, class Elem, class Traits> 
   basic_ostream<Elem, Traits>& 
      operator<< ( 
         basic_ostream<Elem, Traits>& _Ostr, 
         const complex<Type>& _Right 
      );

Parameter

  • _Ostr
    Der in den Ausgabestream, die komplexe Zahl eingegeben wird.

  • _Right
    Die in den Ausgabestream übergegangen sind komplexe Zahl,

Rückgabewert

Schreibt _Ostr in einem Format kartesischen den Wert der angegebenen Zahl komplexen: ( reellen, imaginärer Teil ).

Hinweise

Der Ausgabestream wird überladen, sodass er jedes Formular einer komplexen Zahl akzeptiert, und sein Standardausgabeformat ist das kartesische Format.

Beispiel

// 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;
}
  

Anforderungen

Header: <komplex>

Namespace: std