📜  C++中带有示例的std :: numeric_limits :: digits

📅  最后修改于: 2021-05-30 07:19:12             🧑  作者: Mango

std :: numeric_limits ::数字头文件中提供了C++ STL中的C++函数。 std :: numeric_limits ::数字函数用于查找数据类型可以表示的基数位数,而不会损失精度。

头文件:

#include

模板:

static const int digits;
static constexpr int digits;

句法:

std::numeric_limits::digits

参数:函数std :: numeric_limits :: digits不接受任何参数。

返回值:函数std :: numeric_limits :: digits返回该类型可以表示的基数位数,而不会损失精度。

下面是演示C++中std :: numeric_limits :: digits的程序:

程序:

// 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等的更多准备工作,请参阅“完整面试准备课程”