根据标准,std::vector<bool>
没有成员函数data()
。但是,以下代码段与最新的GCC和libstdc ++编译良好:
#include <vector>
int main () {
std::vector<bool> v;
v.data();
}
如果我们尝试使用结果,则返回类型为void
。
这是一些gcc扩展还是一个bug?
如果前者是真的,它会做什么?
答案 0 :(得分:10)
我的/usr/include/c++/4.8/bits/stl_bvector.h
有:
// _GLIBCXX_RESOLVE_LIB_DEFECTS
// DR 464. Suggestion for new member functions in standard containers.
// N.B. DR 464 says nothing about vector<bool> but we need something
// here due to the way we are implementing DR 464 in the debug-mode
// vector class.
void
data() _GLIBCXX_NOEXCEPT { }
在/usr/include/c++/4.8/debug/vector
我看到声明:
using _Base::data;
所以这似乎是原因:除非存在std::vector<bool>
,否则std::vector<bool>::data
的调试版本将无法编译。