我知道在 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
}