我一直在使用C ++ STL创建代码。我想使用" queue"。 所以,我编写了如下代码。 但是,我遇到了#34;队列不是模板"错误。 正如您所看到的,我在" Common.h"中编写了与队列(iostream,队列)相关的标题。文件并写了包含" Common.h"在" DataQueue.h"文件。但是,VS2013 IDE工具说'队列m_deQueue'是错误,因为队列不是模板。我不知道为什么..这个错误发生了。任何帮助表示赞赏!
//[Common.h]
#ifndef _COMMON_
#define _COMMON_
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <string>
//thread related headers
#include <Windows.h>
#include <process.h>
//socket related headers
#include <winsock.h>
#include <iostream>
#include <queue>
#include <deque>
#include <vector>
#include <algorithm>
#include <math.h>
using namespace std;
#endif
//[DataQueue.h]
#ifndef _QUEUE_
#define _QUEUE_
#include "SocketStruct.h"
#include "Common.h"
class CDataQueue{
private:
static CDataQueue* m_cQueue;
// deque <ST_MONITORING_RESULT> m_deQueue;
queue <ST_MONITORING_RESULT> m_deQueue;
CRITICAL_SECTION m_stCriticalSection;
CDataQueue();
~CDataQueue();
public:
static CDataQueue* getDataQueue(){
if (m_cQueue == NULL){
m_cQueue = new CDataQueue();
}
return m_cQueue;
}
deque <ST_MONITORING_RESULT> getQueue();
void pushDataToQueue(ST_MONITORING_RESULT data);
ST_MONITORING_RESULT popDataFromQueue();
};
#endif
//[DataQueue.cpp]
#include "DataQueue.h"
CDataQueue* CDataQueue::m_cQueue = NULL;
CDataQueue::CDataQueue(){
::InitializeCriticalSection(&m_stCriticalSection);
// m_mutex = PTHREAD_MUTEX_INITIALIZER;
}
CDataQueue::~CDataQueue(){
::DeleteCriticalSection(&m_stCriticalSection);
}
::deque <ST_MONITORING_RESULT> CDataQueue::getQueue(){
return m_deQueue;
}
void CDataQueue::pushDataToQueue(ST_MONITORING_RESULT data){
::EnterCriticalSection(&m_stCriticalSection);
m_deQueue.push_back(data);
::LeaveCriticalSection(&m_stCriticalSection);
}
ST_MONITORING_RESULT CDataQueue::popDataFromQueue(){
::EnterCriticalSection(&m_stCriticalSection);
ST_MONITORING_RESULT data = m_deQueue.front();
m_deQueue.pop_front();
::LeaveCriticalSection(&m_stCriticalSection);
return data;
}
答案 0 :(得分:4)
位于标准库的MS实现的<queue>
标题的顶部,我们发现......
// queue standard header
#pragma once
#ifndef _QUEUE_
#define _QUEUE_
这意味着您对自己的标题fencepost使用该标识符会阻止MS标头主体被拉入。因此,您没有std::queue
。使用不同的id,最好不违反为实现保留的宏常量的使用规则(如此)。
那就是孩子们,这就是为什么我们不使用为实现使用而保留的标识符。有关详细信息,请阅读以下问题:"What are the rules about using an underscore in a C++ identifier?"