错误:' < '标记前预期的非限定id

Error: expected unqualified-id before ‘<’ token

本文关键字:id 错误      更新时间:2023-10-16

我正在尝试制作某种模板化的Queue类。这似乎是可以的,但我得到2个错误在同一行,我不知道为什么。错误出现在实现文件。cpp中,我试图给出析构函数的定义。下面是类的头文件的代码:

#ifndef QUEUETP_H_INCLUDED
#define QUEUETP_H_INCLUDED
template <class T>
class QueueTp
{
    private:
        struct Node { T item; struct Node * next;};
        enum {QSIZE = 10};
        //Queue's head
        Node *head;
        //Queue's tail
        Node *tail;
        int size;
        int maxsize;
        QueueTp(const QueueTp & q);
        QueueTp & operator=(const QueueTp & q) { return *this;}
    public:
        QueueTp(): size(0),head(0),tail(0),maxsize(QSIZE) {};
        QueueTp(int q = QSIZE): size(0),head(0),tail(0),maxsize(q) {};
        ~QueueTp();
        bool isEmpty(){return size==0;}
        bool isFull() {return size==maxsize;}
        int sizecur() {return size;}
        bool push(const T& t);
        bool pop(T& t);
};
#include "QueueTp.cpp"
#endif // QUEUETP_H_INCLUDED
下面是析构函数在实现文件中的定义:
#include "QueueTp.h"
#include <iostream>
using namespace std;
typename <class T>   //<-<-<- in this line I am getting the two errors
QueueTp<class T>::~QueueTp()
{
    Node *ptr;
    cout<<endl<<"Deleting the queue...";
    while (head !=NULL)
    {
        ptr = head->next;
        delete head;
        head = ptr;
    }
}
//......other method definitions

错误在上面,我从编译器得到的具体错误消息在下面。

error: expected nested-name-specifier before ‘<’ token|
error: expected unqualified-id before ‘<’ token|
||=== Build finished: 2 errors, 12 warnings ===||

请使用"template"而不是"typename"在你得到两个错误消息的行!我发现大多数时候,一个未识别的关键字或一个真正的关键字在错误的地方经常会给出类似于未定义类型的错误,它后面的下一个符号会导致错误。