共用方式為


operator>> (<complex>)

擷取輸入資料流的複雜的值。

template<class Type, class Elem, class Traits>
   basic_istream<Elem, Traits>&
      operator>>(
         basic_istream<Elem, Traits>& _Istr,
         complex<Type>& _Right
      );

參數

  • _Istr
    這個複數擷取的輸入資料流。

  • _Right
    從輸入資料流擷取的複數。

傳回值

讀取指定的複數的值從 _Istr 的並傳回至 _Right.

備註

的有效輸入格式。

  • (實內部,想像一節)

  • (實內部)

  • 實作內部

範例

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

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

   complex <double> c2;

   cout << "Input a complex number ( try: 2.0 ): ";
   cin >> c2;
   cout << c2 << endl;
}
  2.0

需求

標題: <complex>

命名空間: std