//vs2013 32位win8
cout << sizeof(bool) << endl;//1 deque<bool> d(1);
cout << sizeof(d[0]) << endl;//1
vector<bool> v(1);
cout << sizeof(v[0]) << endl;//16
cout << sizeof(d) << endl;//20
cout << sizeof(v) << endl;//24
v.resize(100);
d.resize(100);
cout << sizeof(d) << endl;//20
cout << sizeof(v) << endl;//24
//bool *p = &v[0];//无法编译
办法
不读源代码的情况下能不能通过外部黑盒测试证明vector<bool>只存储bit而非 字节序?
时间: 2024-10-06 03:18:50