cout 修饰符不粘?
cout << hex << 11 << endl;
cout << 12 << endl;
将打印:
a
b
如果我cout 13,它将被打印为“c”。从现在开始,我如何删除十六进制修饰符,以便它只打印 13? 这可能很简单,但我尝试在其他地方寻找答案。谢谢。
cout << hex << 11 << endl;
cout << 12 << endl;
will print :
a
b
If I cout 13, it will be printed as 'c'. How do I remove the hex modifier from now on so it would just print 13?
This is probably simple but I tried looking for the answer elsewhere. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在您的代码中写入:
Write in your code:
您可能想查看 Boost iostream 状态保护程序 图书馆。这使得保存状态、设置新状态、然后恢复原始(保存的)状态变得相当容易。
You might want to look at the Boost iostream state saver library. This makes it fairly easy to save a state, set a new state, then restore the original (saved) state.
另请参阅此处
Also look here