libstdc ++的std :: vector <bool> :: data有什么作用?

时间:2016-10-24 20:57:16

标签: c++ c++11 gcc libstdc++

根据标准,std::vector<bool>没有成员函数data()。但是,以下代码段与最新的GCC和libstdc ++编译良好:

#include <vector>

int main () {
    std::vector<bool> v;
    v.data();
}

如果我们尝试使用结果,则返回类型为void

这是一些gcc扩展还是一个bug?
如果前者是真的,它会做什么?

1 个答案:

答案 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的调试版本将无法编译。