C++ short 关键字
定义和用法
The short
关键字本身或与 int
结合使用时,是一种 16 位长的数据类型,用于存储整数。
使用 16 位,它可以存储介于 -32768 和 32767 之间的正数和负数,或者当无符号时介于 0 和 65535 之间。
相关页面
The unsigned
关键字可以允许 short int
通过不表示负数来表示更大的正数。
在我们的 C++ 数据类型教程 中了解有关数据类型的更多信息。
The short
关键字本身或与 int
结合使用时,是一种 16 位长的数据类型,用于存储整数。
使用 16 位,它可以存储介于 -32768 和 32767 之间的正数和负数,或者当无符号时介于 0 和 65535 之间。
The unsigned
关键字可以允许 short int
通过不表示负数来表示更大的正数。
在我们的 C++ 数据类型教程 中了解有关数据类型的更多信息。
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]