命名空间
变体
操作

std::numeric_limits<T>::lowest

来自 cppreference.com
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三元比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
 
 
static constexpr T lowest() noexcept;
(自 C++11 起)

返回数值类型 T 可表示的最小有限值,即,一个有限值 x,使得不存在其他有限值 y 满足 y < x。这与浮点类型中的 std::numeric_limits<T>::min() 不同。仅对有界类型有意义。

内容

[编辑] 返回值

T std::numeric_limits<T>::lowest()
/* 非专门化 */ T()
bool false
char CHAR_MIN
signed char SCHAR_MIN
unsigned char 0
wchar_t WCHAR_MIN
char8_t (自 C++20 起) 0
char16_t 0
char32_t 0
short SHRT_MIN
unsigned short 0
int INT_MIN
unsigned int 0
long LONG_MIN
unsigned long 0
long long LLONG_MIN
unsigned long long 0
float -FLT_MAX
double -DBL_MAX
long double -LDBL_MAX

[编辑] 注意

对于每个标准 C++ 浮点类型 Tstd::numeric_limits<T>::lowest() == -std::numeric_limits<T>::max(),但这并不一定适用于任何第三方专门化。

[编辑] 示例

演示了 min()max()lowest() 的浮点类型

#include <iostream>
#include <limits>
#include <string_view>
 
template<typename T>
void print_twice(std::string_view type, T value)
{
    std::cout << '\t' << type << ": "
              << std::defaultfloat << value << " or "
              << std::hexfloat << value << '\n';
}
 
int main()
{
    // min()
    std::cout << "std::numeric_limits<T>::min():\n";
    print_twice("float", std::numeric_limits<float>::min());
    print_twice("double", std::numeric_limits<double>::min());
    print_twice("long double", std::numeric_limits<long double>::min());
 
    // lowest()
    std::cout << "std::numeric_limits<T>::lowest():\n";
    print_twice("float", std::numeric_limits<float>::lowest());
    print_twice("double", std::numeric_limits<double>::lowest());
    print_twice("long double", std::numeric_limits<long double>::lowest());
 
    // max()
    std::cout << "std::numeric_limits<T>::max():\n";
    print_twice("float", std::numeric_limits<float>::max());
    print_twice("double", std::numeric_limits<double>::max());
    print_twice("long double", std::numeric_limits<long double>::max());
}

输出

std::numeric_limits<T>::min():
	float: 1.17549e-38 or 0x1p-126
	double: 2.22507e-308 or 0x1p-1022
	long double: 3.3621e-4932 or 0x8p-16385
std::numeric_limits<T>::lowest():
	float: -3.40282e+38 or -0x1.fffffep+127
	double: -1.79769e+308 or -0x1.fffffffffffffp+1023
	long double: -1.18973e+4932 or -0xf.fffffffffffffffp+16380
std::numeric_limits<T>::max():
	float: 3.40282e+38 or 0x1.fffffep+127
	double: 1.79769e+308 or 0x1.fffffffffffffp+1023
	long double: 1.18973e+4932 or 0xf.fffffffffffffffp+16380

[编辑] 另请参阅

[静态]
返回给定类型的最小有限值
(公共静态成员函数) [编辑]
[静态]
返回给定浮点类型的最小正次正规值
(公共静态成员函数) [编辑]
[静态]
返回给定类型的最大有限值
(公共静态成员函数) [编辑]