C++ limits头文件的用法(numeric_limits)

初学C++的时候,对这个模板很陌生,不知道它到底是做什么用的,今天拿起《C++标准程序库》,出现了它的讨论,所以决定好好研究一番。

1. numeric_limits是什么?

(A)《C++标准程序库》:

一般来说,数值型别的极值是一个与平台相关的特性。C++标准程序库通过template numeric_limits提供这些极值,取代传统C语言,所采用的预处理常数。新的极值概念有两个优点,第一是提供更好的型别安全性,第二是程序员可借此写出一些template以核定这些极值。

(B)MSDN

The template class describes arithmetic properties of built-in numerical types.

The header defines explicit specializations for the types wchar_t, bool, char, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, float, double, and long double. For these explicit specializations, the member numeric_limits::is_specialized is true, and all relevant members have meaningful values. The program can supply additional explicit specializations. Most member functions of the class describe or test possible implementations of float.

For an arbitrary specialization, no members have meaningful values. A member object that does not have a meaningful value stores zero (or false) and a member function that does not return a meaningful value returns Type(0).



上面的意思是说:

这个模板类描述了内建类型的数值属性。

C++标准库显式地为wchar_t, bool, char, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, float, double, and long double这些类型提供了特化。对于这些类型来说,is_specialized为true,并且所有的相关的成员(成员变量或成员函数)是有意义的。这个模板也提供其他的特化。大部分的成员函数可以用float型别来描述或测试。

对于一个任意的特化,相关的成员是没有意义的。一个没有意义的对象一般用0(或者false)来表示,一个没有意义的成员函数会返回0.


(C)我的理解

说白了,它是一个模板类,它主要是把C++当中的一些内建型别进行了封装,比如说numeric_limits<int>是一个特化后的类,从这个类的成员变量与成员函数中,我们可以了解到int的很多特性:可以表示的最大值,最小值,是否是精确的,是否是有符号等等。如果用其他任意(非内建类型)来特化这个模板类,比如string,string怎么可能有最大值?我们从MSDN上可以了解到,这对string,成员变量与成员函数是没有意义的,要么返回0要么为false。 
2. 小例展示numeric_limits的基本用法:

#include <limits>  
#include <iostream>  
using namespace std;  int main() {  cout << boolalpha;  cout << "max(short): " << numeric_limits<short>::max() << endl;  cout << "min(short): " << numeric_limits<short>::min() << endl;  cout << "max(int): " << numeric_limits<int>::max() << endl;  cout << "min(int): " << numeric_limits<int>::min() << endl;  cout << "max(long): " << numeric_limits<long>::max() << endl;  cout << "min(long): " << numeric_limits<long>::min() << endl;  cout << endl;  cout << "max(float): " << numeric_limits<float>::max() << endl;  cout << "min(float): " << numeric_limits<float>::min() << endl;  cout << "max(double): " << numeric_limits<double>::max() << endl;  cout << "min(double): " << numeric_limits<double>::min() << endl;  cout << "max(long double): " << numeric_limits<long double>::max() << endl;  cout << "min(long double): " << numeric_limits<long double>::min() << endl;  cout << endl;  cout << "is_signed(char): "  << numeric_limits<char>::is_signed << endl;  cout << "is_specialized(string): "   << numeric_limits<string>::is_specialized << endl;  
}  

我机器上的运行结果:

max(short): 32767
min(short): -32768
max(int): 2147483647
min(int): -2147483648
max(long): 2147483647
min(long): -2147483648


max(float): 3.40282e+038
min(float): 1.17549e-038
max(double): 1.79769e+308
min(double): 2.22507e-308
max(long double): 1.79769e+308
min(long double): 2.22507e-308


is_signed(char): true
is_specialized(string): false
请按任意键继续. . .


关于为什么float的最小值竟然是正的?我也存在疑问,从结果中,我们看出,min返回的是float型别可以表示的最小的正值,

而不是最小的float数。

从这个例子中,我们差不多了解到numeric_limits的基本用法。

3. 基本成员函数

我以float类型来展示:

#include <limits>  
#include <iostream>  
using namespace std;int main() {cout << boolalpha;// 可以表示的最大值  cout << "max(float): " << numeric_limits<float>::max() << endl;// 可以表示的大于0的最小值,其他类型的实现或与此不同  cout << "min(float): " << numeric_limits<float>::min() << endl;// 标准库是否为其实现了特化  cout << "is_specialized(float): " << numeric_limits<float>::is_specialized << endl;// 是否是有符号的,即可以表示正负值  cout << "is_signed(float): " << numeric_limits<float>::is_signed << endl;// 不否是整形的  cout << "is_integer(float): " << numeric_limits<float>::is_integer << endl;// 是否是精确表示的  cout << "is_exact(float): " << numeric_limits<float>::is_exact << endl;// 是否存在大小界限  cout << "is_bounded(float): " << numeric_limits<float>::is_bounded << endl;// 两个比较大的数相加而不会溢出,生成一个较小的值  cout << "is_modulo(float): " << numeric_limits<float>::is_modulo << endl;// 是否符合某某标准  cout << "is_iec559(float): " << numeric_limits<float>::is_iec559 << endl;// 不加+-号可以表示的位数  cout << "digits(float): " << numeric_limits<float>::digits << endl;// 十进制数的个数  cout << "digits10(float): " << numeric_limits<float>::digits10 << endl;// 一般基数为2  cout << "radix(float): " << numeric_limits<float>::radix << endl;// 以2为基数的最小指数  cout << "min_exponent(float): " << numeric_limits<float>::min_exponent << endl;// 以2为基数的最大指数  cout << "max_exponent(float): " << numeric_limits<float>::max_exponent << endl;// 以10为基数的最小指数  cout << "min_exponent10(float): " << numeric_limits<float>::min_exponent10 << endl;// 以10为基数的最大指数  cout << "max_exponent10(float): " << numeric_limits<float>::max_exponent10 << endl;// 1值和最接近1值的差距  cout << "epsilon(float): " << numeric_limits<float>::epsilon() << endl;// 舍入方式  cout << "round_style(float): " << numeric_limits<float>::round_style << endl;
}

运行结果:

max(float): 3.40282e+038
min(float): 1.17549e-038
is_specialized(float): true
is_signed(float): true
is_integer(float): false
is_exact(float): false
is_bounded(float): true
is_modulo(float): false
is_iec559(float): true
digits(float): 24
digits10(float): 6
radix(float): 2
min_exponent(float): -125
max_exponent(float): 128
min_exponent10(float): -37
max_exponent10(float): 38
epsilon(float): 1.19209e-007
round_style(float): 1

参考文献:

http://blog.163.com/wujiaxing009@126/blog/static/7198839920124135147911/

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/258930.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

三层架构——配置文件

1、配置文件是什么&#xff1f; 配置文件是随安装程序一起被安装到计算机上的文件&#xff0c;里面存放着安装好的应用程序执行时所须要的參数。 应用程序配置文件是标准的XML文件&#xff0c;XML标记和属性是区分大写和小写的。它能够按须要更改&#xff0c;开发者可使用配置文…

《嵌入式系统开发之道——菜鸟成长日志与项目经理的私房菜》——02-04项目范围(Scope)管理...

本节书摘来异步社区《嵌入式系统开发之道——菜鸟成长日志与项目经理的私房菜》一书中的第2章&#xff0c;第2.4节&#xff0c;作者&#xff1a;邱毅凌&#xff0c;更多章节内容可以访问云栖社区“异步社区”公众号查看 02-04项目范围&#xff08;Scope&#xff09;管理 嵌入式…

flex(入门)之timer的使用,键盘,鼠标的监听

package {import flash.display.Shape;import flash.display.Sprite;import flash.events.Event;import flash.events.KeyboardEvent;import flash.events.MouseEvent;import flash.events.TimerEvent;import flash.utils.Timer;import mx.controls.Label;//窗体大小&#xff0…

python 线程超时设置_python 条件变量Condition(36)

文章首发微信公众号&#xff0c;微信搜索&#xff1a;猿说python对于线程与线程之间的交互我们在前面的文章已经介绍了 python 互斥锁Lock / python事件Event , 今天继续介绍一种线程交互方式 – 线程条件变量Condition.一.线程条件变量Condition相关函数介绍acquire() — 线程…

MsWord 操作总结

转自&#xff08;http://www.cnblogs.com/eye-like/p/4121219.html&#xff09; Msdn上的word操作api&#xff08;不过只有英文版&#xff0c;英文差的先闪过&#xff09; Word2007的API&#xff1a;http://msdn.microsoft.com/en-us/library/bb257531(voffice.12).aspxWord201…

fwrite,fread and fprintf,fscanf的一些使用体会

这周一直在完成一个任务&#xff0c;就是将训练出的多个model写成一个model。其中我们使用了c语言的读写方法&#xff0c;搞了一星期&#xff0c; 挖了很多坑&#xff0c;最终都铲平了。下面列举出若干有用的知识。 1.fwrite,fread VS fprintf,fscanf的区别 fwrite,fread 读写…

《第一桶金怎么赚——淘宝开店创业致富一册通》一一1.4 淘宝开店创业的流程...

本节书摘来自异步社区出版社《第一桶金怎么赚——淘宝开店创业致富一册通》一书中的第1章&#xff0c;第1.4节&#xff0c;作者&#xff1a;葛存山&#xff0c;更多章节内容可以访问云栖社区“异步社区”公众号查看。 1.4 淘宝开店创业的流程 第一桶金怎么赚——淘宝开店创业致…

检测虚拟机代码总汇(更新中)

检测虚拟机代码 1 004092D0 /. 55 push ebp2 004092D1 |. 8BEC mov ebp,esp3 004092D3 |. 51 push ecx4 004092D4 |. 53 push ebx5 004092D5 |. 68 1D934000 push 0040931D 6 004092DA |. 64:FF35…

两数之和 python_同一屏幕播放两个视频 视频左右两个画面或视频上下两个画面如何制作...

咱们在网上经常可以看到一些视频画面是可以在同一屏幕播放两个视频&#xff0c;有的是视频左右两个画面或视频上下两个画面这些是如何制作的呢&#xff0c;其实熟悉视频编辑软件的网友应该会比较了解这些操作&#xff0c;好嘞&#xff0c;来&#xff0c;现在就让小编来演示一下…

dlib人脸特征点对齐

前面我们介绍了使用dlib进行人脸检测&#xff0c;下面我们给出如何使用dlib进行人脸特征点检测。我们直接贴出代码。我们的代码包括如下几部分功能&#xff1a; 检测单张图片检测一个视频检测一个camera 先给出代码&#xff1a; #include <dlib/image_processing/frontal_…

IOS开发基础知识--碎片13

1:运行程序报the file couldnt be opened because you dont have permission to view it 解决办法&#xff1a;项目—>targets->build settings->build options->changed the value of the "Compiler for C/C/Objective-C" to Default Compiler. 2:百度…

《LoadRunner 12七天速成宝典》—第2章2.6节第二个性能测试案例

本节书摘来自异步社区《LoadRunner 12七天速成宝典》一书中的第2章&#xff0c;第2.6节第二个性能测试案例&#xff0c;作者陈霁&#xff0c;更多章节内容可以访问云栖社区“异步社区”公众号查看。 2.6 第二个性能测试案例云云&#xff1a;烤鱼吃得很爽。 恋恋&#xff1a;就…

MongoDB_1

突然想去看下MongoDB的东西&#xff0c;于是有了这篇文章。其实很早以前就看过一些关于NoSql的文章&#xff0c;还记得当时里面有介绍MongoDB的&#xff0c;多瞅了2眼&#xff0c;并且在Window下安装了MongoDB的驱动&#xff0c;小玩了会。今天重新翻出来&#xff0c;没成想在命…

牛顿法与拟牛顿法,SDM方法的一些注记

SDM方法 考虑一般额NLS问题&#xff1a; f(x)minx||h(x)−y||2这里x为优化参数&#xff0c;h为非线性函数&#xff0c;y是已知变量&#xff0c;如下是基于梯度的迭代公式&#xff1a; ΔxαAJTh(h(x)−y)这里α是步长&#xff0c;A是缩放因子&#xff0c;Jh是h在当前参数x下的…

pyqt5从子目录加载qrc文件_实战PyQt5: 045-添加资源文件

添加资源文件在使用PyQt进行图形界面开发的时候不免要用到一些外部资源&#xff0c;比如图片&#xff0c;qss配置文件等。在前面代码中&#xff0c;遇到这类问题&#xff0c;我们使用绝对路径的方式来解决&#xff0c;这种方式&#xff0c;本身有其不方便之处(比如&#xff0c;…

《 Python树莓派编程》——2.7 总结

本节书摘来自华章出版社《Python树莓派编程》一书中的第2章&#xff0c;第2.7节&#xff0c;作者&#xff1a;[美]沃尔弗拉姆多纳特&#xff08;Wolfram Donat&#xff09;著 韩德强 等译&#xff0c;更多章节内容可以访问云栖社区“华章计算机”公众号查看。 2.7 总结 本章简…

ACM的输入输出总结

关于ACM的输入输出&#xff08;一&#xff09; 一般来说ACM的现场赛会规定输入输出 或者是文件输入标准输出 也可能是文件输入文件输出 如果没有规定的话那么一般就是标准的输入输出了 那说一下输入输出的重定向 一般用下面两种方法 c常用: #include <fstream.h>ifstream…

hdu 2064汉诺塔III 递推

汉诺塔递推题&#xff0c;比汉诺塔多了一个限制条件&#xff0c;盘子只允许在相邻的柱子之间移动。 分析&#xff1a; 第1步:初始状态&#xff1b; 第2步:把上面的n-1个盘移到第3号杆上&#xff1b; 第3步:把第n个盘从1移到2&#xff1b; 第4步:把前n-1个从3移到1&#xff0c;给…

西门子ddc_铁门关西门子两通电动阀VVF42.25-10C+SKD60西

铁门关西门子两通电动阀西SIEMENS/西门子电动温控阀、控制箱、电动蝶阀、电动球阀、超声波热量表、超声波流量计、电磁流量计阀体灰口铸铁 EN-GJL-2502.霍尼韦尔主营&#xff1a;楼宇资料系统、热网自控系统、风机盘管电动两通阀、空气压差开关、水流开关、电动执行器、风阀执行…

swap关于指针的使用

先看下面两个例子&#xff1a; #include <iostream> // std::cout #include <utility> // std::swapint main() {int x 10, y 20; // x:10 y:20int* p1 &x;int* p2 &y;std::swap(*p1, *p2); // x:20 y:10 …