我正在尝试制作一个简单的程序,它将使用 for_each 和一个成员函数指针,以便根据元素的位置添加到向量中的每个元素(代码中的注释应该很好地解释它)。
但是,我遇到了一个错误,我不知道如何纠正我所犯的错误(该错误也在下面的评论中详细说明)。
任何帮助将不胜感激,谢谢。
主文件
#include <iostream>
#include <vector>
#include <list>
#include <algorithm>
class myClass
{
public:
myClass() : i_(0) {}
myClass(int i) : i_(i) {}
const int& Get() const {return i_;}
void Add(const int &arg) {i_ += arg;}
private:
int i_;
};
template <typename RetType, typename ClassType, typename ArgType>
class MemFuncPointer
{
public:
MemFuncPointer(RetType (ClassType::*_pointer) ()) : pointer(_pointer) {}
RetType operator() (ClassType &element) {return(element.*pointer) ();}
private:
RetType (ClassType::*pointer) (ArgType);
};
template <typename RetType, typename ClassType, typename ArgType>
MemFuncPointer<RetType, ClassType, ArgType> func(RetType (ClassType::*pointer) (ArgType) )
{
return MemFuncPointer<RetType, ClassType, ArgType>(pointer);
// The above line gets...
// error C2440: '<function-style-cast>' : cannot convert from
// 'void (__thiscall myClass::* ) (const int &)' to
// 'Functor<RetType,ClassType,ArgType>'
}
int main(void)
{
// Create Vector v
std::vector<myClass> v;
// Push back ten 10's
for(int i = 0; i < 10; ++i)
v.push_back( myClass(10) );
// Set two iterators
std::vector<myClass>::const_iterator it = v.begin(), it_end = v.end();
// Print the vector and newline
for(; it != it_end; ++it)
std::cout << it->Get() << " ";
std::cout << "\n";
// for_each
std::for_each(v.begin(), v.end(), func(&myClass::Add));
// Print the vector and newline
for(it=v.begin(); it!=it_end; ++it)
std::cout << it->Get() << " ";
std::cout << "\n";
// Final vector should be
10, 11, 12, 13, 14, 15, 16, 17, 18, 19
}