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.
我正在尝试使用更新的编译器和更新的工具(新版本的 vxWorks 但没关系)更新旧项目。在代码中它说:
#include <ostream.h>
但是,我收到了大量错误,其中大部分源于:
ostream.h: No such file or directory
我查找了错误,并说很多解决方案将其更改为:
#include "ostream"
这可行,但是这是遗留代码,我不想更改所有这些。有没有办法可以在不更改代码的情况下更改这些包含?
好吧,您可以创建一个名为的文件,该文件ostream.h仅包含一行:
ostream.h
#include <ostream>