位移数字给出错误的输出“std::cout”

发布于 2024-12-03 20:41:19 字数 285 浏览 0 评论 0原文

unsigned int command = 4;
cout << command;

command = (command << 1);
cout << command;

command = (command << 1);
cout << command;

输出:

4
8
10

为什么最后一行的输出是10,而不是16

unsigned int command = 4;
cout << command;

command = (command << 1);
cout << command;

command = (command << 1);
cout << command;

Output:

4
8
10

Why is is the output of the last line 10, and not 16?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伊面 2024-12-10 20:41:19

可能有一个cout << hex 在此代码运行之前的某处。要么是这样,要么是您不小心将 cout 设置为十六进制数字格式。如果添加:

command = (command<<1);
cout << command;

它应该以十六进制模式打印出20

There's probably a cout << hex somewhere before this code runs. Either that or you accidentally set cout to format numbers in hexadecimal. If you add:

command = (command<<1);
cout << command;

It should print out 20 in hex mode.

糖果控 2024-12-10 20:41:19

1016 的十六进制。

0x10 == 16

抱歉,如果我说的是显而易见的事情。

10 is hexadecimal for 16.

0x10 == 16

Sorry if I am stating the obvious.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文