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.
我想知道 std::cin::ungetc 接受多少个字符。它与 C 中的相同吗(因此可移植为 1,见下文)?
相关的 SO 帖子“ungetc:回推的字节数”。
不要忘记,输入流的一种形式是键盘,它不需要被缓冲。如果不是,则除了流本身提供的内容之外,没有后备存储。所以选择是提供一个推回字符,它几乎可以处理所有情况,或者提供更多并且大部分时间浪费空间。就像在 C 中一样,你可以保证一个字符。