[완료][c++ STL] member_function안에서 for_each 사용하기
안녕하세요.
다음과 같이 클래스를 만들었습니다.
class A {
//.. class description
};
class B {
void foo(A* a) {
//.. function description
}
void bar() {
for_each ( H->begin(), H->end(), &B::foo );
}
// member variable
vector< A* > *H; // initialize in elsewhere
}
이렇게 했을 때, 다음과 같이 에러가 나더군요.
" must use '.*' or '->*' to call pointer-to-member function in '__f (...)' "
for_each 안에서 member function 'foo'를 부르려면 어떻게 해야 하는지 궁금합니다.
class A의 member function을 for_each에서 부르려면 mem_fun_ref 를 써야 하는 걸로 알고 있는데요, 위의 경우처럼 class B의 member function을 부를 때도 mem_fun_ref를 써야 하는지 잘 모르겠네요.
mem_fun_ref(&B::foo)를 &B::foo 대신해서 썼을 때는 다음과 같이 에러가 납니다.
argument of type 'void (H::)(A*) does not match 'void (H::*)(A*)'
이 코드가 빨리 되어야 하는데ㅜㅜ..
도움 부탁 드려요.
boost::bind를
boost::bind를 써보세요.
class A {
//.. class description
};
class B {
void foo(A* a) {
//.. function description
}
void bar() {
for_each ( H->begin(), H->end(), boost::bind(&B::foo) );
}
// member variable
vector *H; // initialize in elsewhere
}
boost::bind를 써봤는데,
답글 감사합니다.
그런데 boost::bind를 쓰니 아래와 같은 에러나 나네요 ㅜㅜ
/usr/include/boost/bind.hpp: In instantiation of ‘boost::_bi::result_traits’:
/usr/include/boost/bind/bind_template.hpp:15: instantiated from ‘boost::_bi::bind_t’
oxideMC.cpp:108: instantiated from here
/usr/include/boost/bind.hpp:67: error: ‘void (B::*)(A*)’ is not a class, struct, or union type
/usr/include/c++/4.3/bits/stl_algo.h: In function ‘_Funct std::for_each(_IIter, _IIter, _Funct) [with _IIter = boost::detail::multi_array::array_iterator< A*, A**, mpl_::size_t<1u>, A*& >, _Funct = boost::_bi::bind_t]’:
oxideMC.cpp:108: instantiated from here
/usr/include/c++/4.3/bits/stl_algo.h:3791: error: no match for call to ‘(boost::_bi::bind_t) (A*&)’
이건 뭔말인지도 모르겠어요 ㅜㅜ
제가 답변을 너무 막
제가 답변을 너무 막 달았네요. 죄송합니다.
foo()를 A의 reference를 인자로 받도록 하시고 다음처럼 해보세요.
class A {
//.. class description
};
class B {
void foo(A & a) {
//.. function description
}
void bar() {
for_each ( H->begin(), H->end(), boost::bind(&B::foo,this,_1) );
}
// member variable
vector *H; // initialize in elsewhere
}
잘 됩니다.
위에 주신 코드대로 하니 잘 되네요.
며칠 삽질한 건데 너무너무 감사드려요.
컴파일 될때 감동의 눈물이..ㅜㅜ
boost::bind 참 귀여운 놈이네요. 공부를 해 봐야겠네요...
친절한 답변 감사합니다.
그냥 편하게 boost의
그냥 편하게 boost의 foreach를 쓰셔도 됩니다.
개인적으로는 C++의 for_each는 매번 unary function을 선언해주는 것도 귀찮은 일이더군요.
boost의 foreach는 스크립트 언어의 foreach와 비슷하게 쓸 수 있습니다.
댓글 달기