未定义的静态队列引用

时间:2010-12-16 23:11:00

标签: c++ static

我是C ++ pthreads的新手。我正在尝试做的是使用一个线程来捕获UDP数据包并将其放入队列,另一个线程用于处理它们并在之后发送它们。我的问题是,如何在一个单独的线程中将元素推入/移出容器?

以下是一个例子:

#include <queue>
#include <iostream>
#include <pthread.h>
#include <signal.h>

class A{
public:
    A(){
        pthread_create(&thread, NULL, &A::pushQueue, NULL);

        pthread_join(thread, NULL);
    }
    virtual ~A(){
        pthread_kill(thread, 0);
    }

private:
    static void* pushQueue(void* context){
        for(int i = 0; i < 10; i++){
            bufferInbound.push(i);
            std::cout << i << " pushed!" << std::endl;
        }
    }

    static std::queue<int> bufferInbound;
    pthread_t thread;
};

int main(){
    A* a = new A();

    return 0;
}

编译时,它给出了以下结果:

U53R@Foo:~/$ make
g++ -g -lpthread main.cpp -c
g++ -g -lpthread main.o -o this
main.o: In function `A::pushQueue(void*)':
/home/U53R/main.cpp:20: undefined reference to `A::bufferInbound'
collect2: ld returned 1 exit status
make: *** [make] Error 1

感谢您的帮助。

1 个答案:

答案 0 :(得分:9)

你需要初始化静态成员,在课程结束后添加std::queue<int> A::bufferInbound;或在你的函数中移动它。