📜  std :: numeric_limits<T> C++中的:: denorm_min()示例

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

头文件中提供了C++ STL中的std :: numeric_limits :: denorm_min()函数。此函数用于查找最小的非零非规格化值。

头文件:

#include

模板类别:

static T denorm_min() throw();
static constexpr T denorm_min() noexcept;

句法:

std::numeric_limits::denorm_min()

参数:函数std :: numeric_limits :: denorm_min()不接受任何参数。

返回值:函数std :: numeric_limits :: denorm_min()返回数据类型T的最小非零非正规化值。

下面是演示C++中std :: numeric_limits :: denorm_min()的程序:

程序:

// C++ program to illustrate
// std::numeric_limits::denorm_min()
#include 
#include 
using namespace std;
  
// Driver Code
int main()
{
  
    // Print the denormalised value for
    // different data types
    cout << "For float: "
         << numeric_limits::denorm_min()
         << endl;
  
    cout << "For int: "
         << numeric_limits::denorm_min()
         << endl;
  
    cout << "For double: "
         << numeric_limits::denorm_min()
         << endl;
  
    cout << "For long int: "
         << numeric_limits::denorm_min()
         << endl;
  
    cout << "For long double: "
         << numeric_limits::denorm_min()
         << endl;
    return 0;
}
输出:
For float: 1.4013e-45
For int: 0
For double: 4.94066e-324
For long int: 0
For long double: 3.6452e-4951

参考: https //en.cppreference.com/w/cpp/types/numeric_limits/denorm_min

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”