共用方式為


complex::value_type

表示資料型別是用來表示虛擬和複數虛擬小數部分的型別。

typedef Type value_type;

備註

value_type 是類別更複雜 [型別] 樣板參數的一個同義資料表。

範例

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

int main( )
{
   using namespace std;
   complex <double>::value_type a = 3, b = 4;
   
   complex <double> c1 ( a , b );
   cout << "Specifying initial real & imaginary parts"
      << "\nof type value_type: "
      << "c1 = " << c1 << "." << endl;
}
  

需求

標題: <complex>

命名空間: std

請參閱

參考

complex Class