[완료][c++ STL] member_function안에서 for_each 사용하기

church7의 이미지

안녕하세요.

다음과 같이 클래스를 만들었습니다.

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*)'

이 코드가 빨리 되어야 하는데ㅜㅜ..
도움 부탁 드려요.

kukyakya의 이미지

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
}

church7의 이미지

답글 감사합니다.
그런데 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*&)’

이건 뭔말인지도 모르겠어요 ㅜㅜ

kukyakya의 이미지

제가 답변을 너무 막 달았네요. 죄송합니다.

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
}

church7의 이미지

위에 주신 코드대로 하니 잘 되네요.
며칠 삽질한 건데 너무너무 감사드려요.

컴파일 될때 감동의 눈물이..ㅜㅜ

boost::bind 참 귀여운 놈이네요. 공부를 해 봐야겠네요...

친절한 답변 감사합니다.

terzeron의 이미지

그냥 편하게 boost의 foreach를 쓰셔도 됩니다.

개인적으로는 C++의 for_each는 매번 unary function을 선언해주는 것도 귀찮은 일이더군요.

boost의 foreach는 스크립트 언어의 foreach와 비슷하게 쓸 수 있습니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.