摘要:三段测试代码如下://1//没有 include 头文件 , 编译失败 -- NULL 未定义using namespace std;int main(){int a=NULL;return 0;}//2//引入 iostream , 编译成功#includeiostreamusing namespace std;int main(){int a=NULL;return 0;}//3//引入 vector , 编译成功#includevectorusing namespace std;int main(){int a=NULL;return 0;}提问:1.上面编译成功的两段代码中所使
        
阅读全文