C++: numeric

C++: numeric,第1张

概念:

基本格式:std::numeric_limits::max()——其中max()可替换为min()及lowest();T表示数据类型;

std::numeric_limits::max()——返回数据类型T的最大值;

std::numeric_limits::min()——返回数据类型T的"最小正数";

std::numeric_limits::lowest()——返回数据类型T的最小值(为负数或0);

用法举例:
#include
#include
using namespace std;
int main(){
        cout << "max(short):  " << numeric_limits::max() << endl;//输出short数据类型的最大值

        cout << "max(int):  " << numeric_limits::max() << endl;

        cout << "max(long):  " << numeric_limits::max() << endl;

        cout << "max(float):  " << numeric_limits::max() << endl;

        cout << "max(double):  " << numeric_limits::max() << endl;

        cout << "max(long double):  " << numeric_limits::max() << endl;
        return 0;
}

程序运行结果如下:

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/578462.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-11
下一篇 2022-04-11

发表评论

登录后才能评论

评论列表(0条)

保存