C++error: ‘pQueue‘ was not declared in this scope|

was not declared in this scope是由于没有定义、拼写错误、作用域不正确造成的。一般是细节错误。比如以下错误:

C++error: ‘pQueue‘ was not declared in this scope|_第1张图片

该错误是由于在定义结构体时将struct错写为了student造成的。

typedef student queue
{
    int * pBase;
    int front; // 头指针
    int rear; // 尾指针
} Queue, *pQueue;

是属于细节问题将错误改后,程序即可正常运行。

你可能感兴趣的:(c++,数据结构,开发语言)