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