我正在尝试在 std::transform 中使用 boost::bind 连接两个字符串
假设我的类有两种方法来获取两个字符串(第一个和第二个)并且容器是字符串向量,我试图做如下
struct Myclass
{
std::string getFirstString() {return string1}
std::string getSecondString() {return string2}
private:
std::string string1;
std::string string2;
}
Myclass myObj;
std::vector<string > newVec;
std::vector<myObj> oldVec;
std::transform (oldVec.begin(), oldVec.end(), std::back_inserter(newVec), boost::bind(&std::string::append,boost::bind(&getFirstString, _1),boost::bind(&getSecondString, _1 ) ) );
但是,我得到错误说
error: cannot call member function 'virtual const getSecondString() ' without object
我在这里想念什么?