在本文中,我们将讨论C++中的unsigned short int数据类型。它是C++中最小的(16位)整数数据类型。
无符号short int数据类型的一些属性是:
- 作为无符号数据类型,它只能存储正值。
- 大小为16位。
- 可以存储在无符号short int数据类型中的最大整数值通常为65535 ,约为2 16 – 1 (但取决于编译器)。
- 可以存储在unsigned short int中的最大值作为常量存储在
头文件中,该文件的值可以用作USHRT_MAX 。 - 可以存储在无符号short int中的最小值为零。
- 如果数据类型上溢或下溢,则将值包装起来。例如,如果将0存储在无符号short int数据类型中,并从中减去1 ,则该变量中的值将等于65535 。同样,在发生溢出的情况下,该值将四舍五入为零。
以下是获取最高值的程序,该程序可以存储在C++中的unsigned short int中:
C++
// C++ program to obtain the maximum
// value that we can store in an
// unsigned short int
#include
#include
using namespace std;
int main()
{
// From the constant of climits
// header file
unsigned short int valueFromLimits = USHRT_MAX;
cout << "Value from climits "
<< "constant: "
<< valueFromLimits << "\n";
// using the wrap around property
// of data types
// Initialize variable with value 0
unsigned short int value = 0;
// subtract 1 from the value since
// unsigned data type cannot store
// negative number, the value will
// wrap around and store the maximum
// value that can store in it
value = value - 1;
cout << "Value using the wrap "
<< "around property: "
<< value << "\n";
return 0;
}
输出:
Value from climits constant: 65535
Value using the wrap around property: 65535
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。