1

我正在编写一个带有 pthreads 的类,它的头文件和 .cpp 定义文件。

在 .hi 中有:

class test
{
    public:
        int a;
    ...
    private:
        typedef void (*myfunc)(void *p);
        static myfunc pthreadRun;
}

在 .cpp 我有:

...
typedef void (*myfunc)(void *p);
myfunc test::pthreadRun
{
    this->a = 10;
    pthread_exit(NULL);
}
...

我收到一个错误:void (* test::pthreadRun)(void*)is not a static member of class test,还有一堆其他错误,但这是第一个。

我很困惑,因为它被声明为静态:/

pthreadRun是线程运行函数pthread_create()

我错过了什么?

4

1 回答 1

1

很难准确猜测您要做什么,但首先我想我会像这样重写您的代码:

class test
{
    public:
        int a;
    ...
    private:
        static void pthreadRun(void *p);
}

void test::pthreadRun(void *p)
{
    // this->a = 10; This line is now a big problem for you.
    pthread_exit(NULL);
}

因此,这是您正在寻找的那种结构,尽管您无法从此上下文中访问成员元素(例如 this->a),因为它是一个静态函数。

通常处理这个问题的方法是使用 this 指针启动线程,以便在函数中您可以:

void test::pthreadRun(void *p)
{
     test thistest=(test)p;
     thistest->a=10;  //what you wanted
     thistest->pthreadRun_memberfunction(); //a wrapped function that can be a member function
    pthread_exit(NULL);
}

您应该能够将所有这些功能设为私有/受保护(假设您从此类中启动线程,我认为这样做可能更可取。

于 2013-03-01T11:02:23.623 回答