C++ stack 编译报错 forbids declaration of stack with no type

好久没有C++,一个编译报错还得到网上找半天。
stack <TYPE> mNumber;
报错:forbids declaration of stack with no type

改成:
std::stack <TYPE> mNumber;
或者
using std::stack;
stack <TYPE> mNumber;

你可能感兴趣的:(C++,c)