在本文中,我们将讨论C++中的short int数据类型。 C++中的此数据类型用于存储16位整数。
short int数据类型的一些属性是:
- 作为有符号数据类型,它可以存储正值和负值。
- 大小为16位,其中1位用于存储整数的符号。
- 可以存储为short int数据类型的最大整数值通常为32767 ,约为2 15 -1 (但取决于编译器)。
- 可以存储为short int的最大值作为常量存储在
头文件中。谁的值可以用作SHRT_MAX 。 - 可以存储为short int的最小值作为常量存储在
头文件中。谁的值可以用作SHRT_MIN 。 - 可以以short int数据类型存储的最小整数值通常为-32768 大约( -2 15 +1 ) (但取决于编译器)。
- 如果数据类型上溢或下溢,则将值包装起来。例如,如果将-32768存储为short int数据类型,并从中减去1,则该变量中的值将等于32767 。同样,在发生溢出的情况下,该值将四舍五入为-32768 。
下面是获取可存储在C++中的unsigned long long int中的最大值的程序:
C++
// C++ program to obtain themaximum
// value that can be store in short int
#include
#include
using namespace std;
// Driver Code
int main()
{
// From the constant of climits
// header file
short int valueFromLimits = SHRT_MAX;
cout << "Value from climits "
<< "constant (maximum): "
<< valueFromLimits << "\n";
valueFromLimits = SHRT_MIN;
cout << "Value from climits "
<< "constant (minimum): "
<< valueFromLimits << "\n";
// Using the wrap around property
// of data types
// Initialize two variables with
// -1 as previous and 0 as present
short int previous = -1;
short int present = 0;
// Increment both values until the
// present increases to the max limit
// and wraps around to the negative
// value i.e., present becomes less
// than the previous value
while (present > previous) {
previous++;
present++;
}
cout << "Value using the wrap "
<< "around property :\n";
cout << "Maximum: " << previous << "\n";
cout << "Minimum: " << present << "\n";
return 0;
}
输出:
Value from climits constant (maximum): 32767
Value from climits constant (minimum): -32768
Value using the wrap around property :
Maximum: 32767
Minimum: -32768
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。