奇怪的内存覆盖问题导致整数变成十六进制数字
我正在调试某人的代码,并且我有这样的代码:
int i = their_val;
std::cout << "output: " << i << std::endl;
当我查看日志输出时,我看到这样的行:
output: a
这种情况应该发生吗?是否有什么东西改变了 cout 格式或者可能是更奇怪的东西?
I am in the midst of debugging someone's code, and I have code like
int i = their_val;
std::cout << "output: " << i << std::endl;
When I look at the log output I see lines like
output: a
Should this happen? Is something changing the cout formatting or could it be something odder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有人
cout << std::hex 在该输出之前?它会导致它以十六进制打印。
Did someone
cout << std::hex
prior to that output? It would cause it to print in hexadecimal.检查并查看
std::hex
是否在任何地方传递到 std::cout 中。这会导致您所看到的行为。您可以使用以下方法强制使用十进制:
Check and see if
std::hex
gets passed into std::cout anywhere. That would result in the behavior you're seeing.You can force things to be in decimal using:
您可能做了
std::cout << std::hex
较早的地方。您可以使用 std::cout << 来撤消此操作。 std::dec。You probably did
std::cout << std::hex
somewhere earlier. You can undo this withstd::cout << std::dec
.