2017-12-03 101 views

回答

6

鏘蝽(#34091

[dcl.type.class.deduct]

一種用於推導的類類型的佔位符也可以在使用[...] 或作爲簡單型說明符explicit type conversion (functional notation)。推導出的類類型的佔位符不應出​​現在任何其他上下文中。 [實施例:

template<class T> struct container { 
    container(T t) {} 
    template<class Iter> container(Iter beg, Iter end); 
}; 

template<class Iter> 
container(Iter b, Iter e) -> container<typename std::iterator_traits<Iter>::value_type>; 
std::vector<double> v = { /* ... */ }; 

container c(7);       // OK, deduces int for T 
auto d = container(v.begin(), v.end()); // OK, deduces double for T 
container e{5, 6};      // error, int is not an iterator 

- 端示例]