Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 xcode 中使用向量,但它在我当前的项目中不起作用。我收到了 'vector' file not found.我已经添加#include < vector > 并将文件从 .m 更改为 .mm 的错误消息。“编译源为”设置为“根据文件类型”,我尝试了两个编译器(4.1 和 GCC 4.2)。我也清理了这个项目,但没有运气。
'vector' file not found.
#include < vector >
我做了一个新项目,并完成了这些步骤和矢量工作完全正常。我什至将相同的文件放入新项目中,并且可以正常工作。
删除括号之间的空格。IE,
#include <vector>
不是