2

我有一个小问题,我知道它的原因,但不知道它的解决方案。

我有一个小单例类,其头文件是

#ifndef SCHEDULER_H_
#define SCHEDULER_H_

#include <setjmp.h>
#include <cstdlib>
#include <map>
#include <sys/time.h>
#include <signal.h>
#include "Thread.h"

class Scheduler {
public:
    static Scheduler * instance();
    ~Scheduler();

    int threadSwitcher(int status, bool force);
    Thread * findNextThread(bool force);
    void runThread(Thread * nextThread, int status);

    void setRunThread(Thread * thread);
    void setSleepingThread(Thread * thread);
    void setTimer(int num_millisecs);
    std::map<int, Thread *> * getSuspendedThreads() const;
    std::map<int, Thread *> * getReadyThreads() const;
    Thread * getSleepingThread() const;
    Thread * getRunningThread() const;
    Thread * getThreadByID(int tid) const;
    const itimerval * getTimer() const;
    const sigset_t * getMask() const;

    void pushThreadByStatus(Thread * thread);
    Thread * extractThreadByID(int tid);

private:
    Scheduler();
    sigset_t _newMask;
    sigjmp_buf _image;
    static Scheduler * _singleton;
    std::map<int, Thread *> * _readyThreads;
    std::map<int, Thread *> * _suspendedThreads;
    Thread *_sleepingThread;
    Thread * _runThread;
    itimerval _tv;
};

Scheduler * Scheduler::_singleton = 0;

#endif /* SCHEDULER_H_ */

现在当然我将这个头文件导入Scheduler.cpp到另一个文件中other.cpp

问题是在 other.cpp 我不断得到

../otherfile.cpp:47: multiple definition of `Scheduler::_singleton'

我知道它是因为我两次导入相同的标题 - 我该如何解决?_singletone是静态的,必须保持静态。为什么包括警卫没有帮助?

4

2 回答 2

3

_singletonstatic您的类的成员,您需要在类声明之外显式定义它。如果您在标头中这样做 - 就像您所做的那样 - 并将该标头包含在多个源文件中,链接器会找到同一符号的多个定义,因此它会抱怨。所以解决办法就是把这个静态成员定义移动到对应的源文件中。

于 2012-04-28T21:44:03.937 回答
1

将此行移至您的 CPP 文件之一:

Scheduler * Scheduler::_singleton = 0;
于 2012-04-28T21:38:54.133 回答