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.
ostream& tab (ostream &o) { return o << '\t'; }
我想将此声明放入 iostream 库中。我该怎么做?
你不能。iostream 库的内容由 C++ 标准定义,并且可能由系统中的每个 C++ 程序共享。虽然您可以(实际上,这在技术上被标准禁止)为您自己的程序注入std名称空间(这是一个坏主意,但是由于潜在的名称冲突),并且您可以在自己的库中定义内容,您可以不要只是为每个人修改公共库。
std