问题
According to the standard, std::vector<bool>
has no member function data()
. However, the following snippet compiles fine with the latest GCC with libstdc++:
#include <vector>
int main () {
std::vector<bool> v;
v.data();
}
If we try to use the result, it turns out the return type is void
.
Is this some gcc extension or a bug?
If the former is true, what does it do?
回答1:
My /usr/include/c++/4.8/bits/stl_bvector.h
has:
// _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 { }
In /usr/include/c++/4.8/debug/vector
I see the declaration:
using _Base::data;
So that seems to be the reason: the debug version of std::vector<bool>
wouldn't compile unless std::vector<bool>::data
existed.
来源:https://stackoverflow.com/questions/40227414/what-does-libstdcs-stdvectorbooldata-do