• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

转载:C++中如何返回内置类型的最值— limits 使用

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

原文地址:http://hi.baidu.com/qingmuxiaoyao/blog/item/570184fd6daff840d7887de5.html

 

在c++的<limits>中定义了如下的一个模板类:

template<class Type> class numeric_limits


它可以求出下列内置类型的一些特性:
wchar_t, bool, char, signed char, unsigned char, short, unsigned short,
int, unsigned int, long, unsigned long, float, double, and long double.

 

有这么四个函数,比较有用:
max()         Returns the maximum finite value for a type.
min()          Returns the minimum normalized value for a type.

digits()       Returns the number of radix digits that the type can represent without loss of precision.
digits10()   Returns the number of decimal digits that the type can represent without loss of precision.

 

max()举例如下:msdn2005上的例子

// numeric_limits_max.cpp
#include <iostream>
#include <limits>

using namespace std;

int main() {
   cout << "The maximum value for type float is: "
        << numeric_limits<float>::max( )
        << endl;
   cout << "The maximum value for type double is: "
        << numeric_limits<double>::max( )
        << endl;
   cout << "The maximum value for type int is: "
        << numeric_limits<int>::max( )
        << endl;
   cout << "The maximum value for type short int is: "
        << numeric_limits<short int>::max( )
        << endl;
}

Output

The maximum value for type float is: 3.40282e+038
The maximum value for type double is: 1.79769e+308
The maximum value for type int is: 2147483647
The maximum value for type short int is: 32767


digits()举例:
// numeric_limits_digits_min.cpp
#include <iostream>
#include <limits>

using namespace std;

int main( )
{
   cout << numeric_limits<float>::digits <<endl;
   cout << numeric_limits<double>::digits <<endl;
   cout << numeric_limits<long double>::digits <<endl;
   cout << numeric_limits<int>::digits <<endl;
   cout << numeric_limits<__int64>::digits <<endl;
}

Output

24
53
53
31
63

 

digits10举例:
// numeric_limits_digits10.cpp
#include <iostream>
#include <limits>

using namespace std;

int main( )
{
   cout << numeric_limits<float>::digits10 <<endl;
   cout << numeric_limits<double>::digits10 <<endl;
   cout << numeric_limits<long double>::digits10 <<endl;
   cout << numeric_limits<int>::digits10 <<endl;
   cout << numeric_limits<__int64>::digits10 <<endl;
}

Output

6
15
15
9
18

==============

其实,得到最大无符号整型数有个简便方法:

{

unsigned int a=-1;

cout<<a<<endl;

}


 

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#中服务端接受前端JSON字符串转换成字典集合发布时间:2022-07-13
下一篇:
C# 引用参数发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap