共用方式為


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

需求

標題: <複雜>

命名空間: std