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