可能重复:
错误:未在此范围内声明“NULL”
我有这段代码,它是在 Visual Studio 中编写的,但我在 Eclipse 中工作,我正试图让它为 Eclipse 编译,我抛出了这个错误
..\heap.cpp:104:10: error: 'NULL' was not declared in this scope
代码:
#include"heap.h"
using namespace std;
template<class T>
Heap<T>::Heap() // constructor
{
root = NULL;
size = 0;
}