欢迎来到 常识词典网 , 一个专业的常识知识学习网站!

[ Ctrl + D 键 ]收藏本站

您所在的位置:首页 > 教育学习 > 知道

知道

C++中vector元素的类型为指针,如何将其赋为NULL?

分类: 知道 常识词典 编辑 : 常识 发布 : 04-24

阅读 :273

C++中vector元素的类型为指针,如何将其赋为NULL?vector<int*> p(5, NULL); 这段代码能被最新的g++编译,但在某些老版本的g++中,会给出如下错误信息: warning: passing NULL to non-pointer argument 2 of "std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [wit- _InputIterator = int, _Tp = int*, _Alloc = std::allocator<int*>, allocator_type = std::allocator<int*>]"In file included from /usr/include/c++/4.5/vector:65:0, ……1 个答案

答案 1:

null 是const int,与int* 指针类型不符合 转一下就可以了: std::vector<int*> v1(5,static_cast<int*>(0));

下一篇:投资入门需要些什么? 下一篇 【方向键 ( → )下一篇】

上一篇:大家现在用什么浏览器啊?IE用户还很多吗? 上一篇 【方向键 ( ← )上一篇】