我需要将 a 的索引传入map
a std::wstring
,它的值也是 a ,传递给以 3作为参数std::wstring
的成员函数。std::wstrings
我正在尝试使用boost::bind
inwrite
方法,class Result
如下面的示例代码所示。
我正在以更清晰的方式重新发布代码,并且出现编译错误。
typedef std::map<std::wstring,std::wstring> map_type;
class Print
{
public:
Print(){};
virtual ~Print(){};
void setValue(const std::wstring & str1, const std::wstring & str2,
const std::wstring & str3 = L"")
{
wprintf(L"String1[%ls] String2[%ls] String3[%ls]\n",str1.c_str(), str2.c_str(), str3.c_str());
}
};
class Result : public Print
{
public:
Result(){};
virtual ~Result(){};
void write(const std::wstring val1, const std::wstring val2, const std::wstring val3)
{
std::map<std::wstring,std::wstring> my_map_test;
my_map_test[L"Idx1"]=L"Value1";
my_map_test[L"Idx2"]=L"Value2";
for_each(my_map_test.begin(), my_map_test.end(),
boost::bind(&Result::setValue,
boost::bind(&map_type::value_type::first,_1),
boost::bind(&map_type::value_type::second,_1), L"TEST"));
}
};
int _tmain(int argc, _TCHAR* argv[])
{
Result result;
result.write();
return 0;
}
谢谢。