从std`<;VECTOR>;`库创建的`VECTOR`与从`<;stl_vetor.h>;`创建的`STL VECTOR`的区别
为什么STD库中有两个不同的矢量库?
stl_vector.h
vector.h
两者有什么不同?
解决方案
如果您查看into the file本身,您将看到
/** @file bits/stl_vector.h
* This is an internal header file, included by other library headers.
* Do not attempt to use it directly. @headername{vector}
*/
您的代码不应直接包含stl_vector.h
。它是libstdc++的实现细节,可能在其他标准库实现中不存在。
相关文章