C++ 中 unsigned 和 unsigned int 的区别

发布于 2024-12-11 07:48:42 字数 303 浏览 0 评论 0原文

unsignedunsigned int 之间有什么区别?

这个问题已经针对 C 得到了回答(没有区别):

Difference Between C 中的 unsigned 和 unsigned int

我有兴趣知道 C++ 中是否有任何实际差异。他们是同一类型吗?

What is the difference between unsigned and unsigned int?

This question was already answered for C (there is no difference):

Difference between unsigned and unsigned int in C

I am interested in knowing whether there is any practical difference in C++. Are they the same type?

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

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

发布评论

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

评论(1

同展鸳鸯锦 2024-12-18 07:48:42

它们是相同的类型,就像 C 中一样。没有任何区别。

当然,unsigned 可以用作其他整型类型的限定符。但默认情况下,unsignedunsigned int 相同。

They are the same type, as in C. No differences at all.

Of course, unsigned can be used as a qualifier for other integral types. But by default, unsigned is the same as unsigned int.

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