C++中vector元素的类型为指针,如何将其赋为NULL?
2012-01-19 17:43:00 来源: 点击:
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&) [with _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));
相关热词搜索:
上一篇:如何设计一个定向Web爬虫?
下一篇:我是不是要辞职?