typedef void (*pf)(int); std::vector<pf> v; std::for_each(v.begin(), v.end(), bind(_1, 5));. The desired effect can be achieved via a helper function object ...
確定! 回上一頁