std :: numeric_limits
头文件:
#include
模板:
static const int digits;
static constexpr int digits;
句法:
std::numeric_limits::digits
参数:函数std :: numeric_limits
返回值:函数std :: numeric_limits
下面是演示C++中std :: numeric_limits
程序:
// C++ program to illustrate
// std::numeric_limits::digits
#include
#include
using namespace std;
// Driver Code
int main()
{
// Print the numeric digit for
// the various data type
cout << "For int: "
<< numeric_limits::digits
<< endl;
cout << "For float: "
<< numeric_limits::digits
<< endl;
cout << "For double: "
<< numeric_limits::digits
<< endl;
cout << "For long double: "
<< numeric_limits::digits
<< endl;
return 0;
}
输出:
For int: 31
For float: 24
For double: 53
For long double: 64
参考: https : //en.cppreference.com/w/cpp/types/numeric_limits/digits
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。