我有一个对象列表,我需要调用一个成员函数 - 到目前为止没什么大不了的:遍历列表,完成调用 - 完成。
现在我在同一个列表上有几个相同的地方,除了被调用的成员函数发生变化(参数总是相同,是一个double值)。
我尝试使用std :: function,但最终无法使其正常工作。有什么建议? (经过多年的C#,我回到了C ++,所以忘了很多)。
现在的样子:
void CMyService::DoSomeListThingy(double myValue)
{
for (std::list<CMyListItem*>::iterator v_Iter = myList.begin(); v_Iter != myList.end(); ++v_Iter)
{
(*v_Iter)->MethodToBeCalled(myValue);
}
}
void CMyService::DoSomeThingDifferent(double myValue)
{
for (std::list<CMyListItem*>::iterator v_Iter = myList.begin(); v_Iter != myList.end(); ++v_Iter)
{
(*v_Iter)->CallTheOtherMethod(myValue);
}
}
这就是我喜欢的方式:
void CMyService::DoSomeListThingy(double myValue)
{
ApplyToList(&CMyListItem::MethodToBeCalled, myValue);
}
void CMyService::DoSomeThingDifferent(double myValue)
{
ApplyToList(&CMyListItem::CallTheOtherMethod, myValue);
}
void CMyService::ApplyToList(std::function<void(double)> func, double myValue)
{
for (std::list<CMyListItem*>::iterator v_Iter = myList.begin(); v_Iter != myList.end(); ++v_Iter)
{
(*v_Iter)->func(myValue);
}
}
答案 0 :(得分:3)
void CMyService::ApplyToList(void (CMyListItem::*func)(double), double myValue) {
for (auto p : myList) {
(p->*func)(myValue);
}
}
使用预C ++ 11编译器:
void CMyService::ApplyToList(void (CMyListItem::*func)(double), double myValue) {
for (std::list<CMyListItem*>::iterator v_Iter = myList.begin();
v_Iter != myList.end(); ++v_Iter) {
((*v_Iter)->*func)(myValue);
}
}
答案 1 :(得分:0)
您可以使用lambdas
void CMyService::ApplyToList(std::function<void(CMyListItem*, double)> func, double myValue))
{
for (std::list<CMyListItem*>::iterator v_Iter = myList.begin(); v_Iter != myList.end(); ++v_Iter)
{
func(*v_Iter, myValue);
}
}
和
double val;
std::function<void(A*,double)> fun1 = [=](A *th,double) {
th->foo(val);
};
std::function<void(A*,double)> fun2 = [=](A *th,double) {
th->bar(val);
};
ApplyToList(fun1, val);
ApplyToList(fun2, val);