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.
如果将输入流发送到输出流会发生什么?有没有可能你能帮我举个c++的例子吗
假设你的意思是这样的:
std::cout << std::cin;
是的,你可以这么做。根据您使用的是符合 C++03 还是 C++11 的编译器,它会做不同的事情:
std::cin.operator void *()
std::cin.operator bool()
它不会自动将输入流的结果复制到输出流。
将输入流发送到输出流称为管道。
是的,你可以做到。