C++에서 함수포인터 사용(구조체 안에 넣어진 함수 포인터에서 c

cho's의 이미지

안녕하세요. 비가 많이 오네요.
~~
함수 포인터를 구조체에 넣고서 해당 함수를 호출하려고 합니다.
명령어를 받으면 그와 일치하는 클래스의 함수를 호출하려고 합니다.
cannot convert 'int (Cmd::*)(char*)' to 'int (*)(char*) in initialization
이라고 납니다.구조체 안에서 int (Cmd::*func)(char* in)으로도 바꿔보고 이것 저것 바꿔봐도 잘 안되네요.

C에서 이렇게 해서 빠르게 찾아서 참 잘 썼었는데 c++로도 이런식으로 빠르고
편하게 쓰고 싶은데 방법이 없을까요?

고수님들의 조언바랍니다.
좋은 하루 되세요...

class Cmd{
public:
int cmd_win(char* in);
int cmd_base(char* in);
int cmd_button(char* in);}
};

int Cmd::cmd_win(char* in){cout << "called\n"; }
int Cmd::cmd_base(char* in){cout << "called\n"; }
int Cmd::cmd_button(char* in){cout << "called\n"; }

typedef struct
{
char* name;
int (*func)(char* in);
} _item;


_item cmdItem[] =
{
{"base", &Cmd::cmd_base },
{"button", &Cmd::cmd_button },
{"win", &Cmd::cmd_win }
};
#define ITEMS (int) (sizeof(cmdItem) / sizeof(_item))

// 중요한 부분
int Cmd::start()
{
char* param = "base";
for(int i = 0; i < 2; i++)
{
if(!strcmp(param, cmdItem[i].name))
if(cmdItem[i].func(param) ) return -2;
}

return 0;
}

sliver의 이미지

class Cmd{
public:
static int cmd_win(char* in);
static int cmd_base(char* in);
static int cmd_button(char* in);}
};

이렇게 고치세요.

static method가 아닌 보통 method는 어떤 특정한 instance와 연관되기 때문에,

단순히 저렇게 함수포인터로만 호출할 수 없습니다.

pynoos의 이미지

일반 멤버함수는 this pointer의 암묵적인 인자 전달이 있고,
static 멤버함수는 this pointer의 전달을 명시적으로 막습니다.
따라서 static 함수에 수반되는 현상은 instance없어도 함수를 call할 수 있고,
멤버함수이긴하지만 this가 없으므로 static 이아닌 멤버 변수나 함수는
호출 할 수가 없게 됩니다.

따라서, 처음 제기한 식의 callback을 즐겨 이용하시려면, sliver 님 말대로 static 멤버함수로 선언해야하거나. 아니면 다음과 같이 사용하셔야합니다.

start 가 cmd의 멤버인거 같은데 선언에는 빠져 있군요..

typedef struct
{
        char               *name;  
        int                 ( Cmd::*func ) ( char *in );
} _item;

int Cmd::start() 
{ 
    char* param = "base"; 

    for(int i = 0; i < 2; i++) 
    { 
       if(!strcmp(param, cmdItem[i].name)) 
              if( (this->*cmdItem[i].func)(param) ) return -2; 
    }
}

참고:
http://www.lnf.infn.it/computing/doc/aixcxx/html/language/xmp/xnpt2mem.htm

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.