关于函数模板中的默认模板参数

时间:2014-06-23 22:10:16

标签: c++ templates c++11 template-function

据我所知,在C ++ 11中,模板函数的模板参数中可能有默认值。到目前为止,只允许上课。

我一直认为在C ++ 11中将默认值放在模板参数中意味着如下所示

 // C++11 target code
 template<class Iterator, class AFunctor=mybinary_fnctr>
 void myFunction(Iterator first, Iterator last, AFunctor fnctr);

相反,我尝试执行以下操作,相信传统的C ++可以正常工作

 // C++ traditional
 template<class Iterator, class AFunctor>
 void myFunction(Iterator first, Iterator last, AFunctor fnctr=mybinary_fnctr);

我对以下示例代码的错误如下

 error: no matching function for call to ‘algo(__gnu_cxx::__normal_iterator<A*,
 std::vector<A, std::allocator<A> > >, __gnu_cxx::__normal_iterator<A*, 
 std::vector<A, std::allocator<A> > >)’

编译器是否尝试为其中一个模板参数设置默认值(虽然语法有点不同)或者我做错了什么?

 namespace util {
 template<class T>
  int get(const T& obj);
 }

 class A {
  public:
   A(int a): data_(a) {}
   int data() const { return data_; }
  private:
   int data_;
  };

  namespace util {
  template<>
  int get<A>(const A& obj) {
   return obj.data();
  } }

 template <class Iterator,class GetFunction>
 void algo(Iterator first, Iterator last, 
 GetFunction foo=boost::bind(&util::get<typename Iterator::value_type>,_1)) 
 {
  while(first != last) {
   cout << foo(*first) << endl;
   ++first;
  } }

 int main() {
  A cntr[] = { A(10), A(20), A(30) };
  A* p = cntr;
  vector<A> ptr(p, p+3);

  algo(ptr.begin(), ptr.end()); // doesn't build
  //algo(cntr, cntr+3, boost::bind(&util::get<A>,_1)); // ok
  }

0 个答案:

没有答案