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 Ausgabestream, in den die komplexe Zahl eingegeben wird.

  • _Right
    Die in den Ausgabestream eingegeben werden komplexe Zahl,

Rückgabewert

Schreibt _Ostr in einem kartesischen Format den Wert der angegebenen komplexe Zahlen: ( Realteil, imaginärer Teil ).

Hinweise

Der Ausgabestream wird überladen, sodass er jedes Formular einer komplexen Zahl akzeptiert, und sein Standardwert Ausgabeformat 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: <complex>

Namespace: std