- 浏览: 369717 次
- 性别:
- 来自: 苏州
文章分类
- 全部博客 (335)
- C++ (190)
- 设计模式 (43)
- 数据库技术 (5)
- 网络编程 (11)
- 自动化测试 (6)
- Linux (13)
- OpenSSL (10)
- MS Crypt API (5)
- SCM (2)
- English (4)
- Android (10)
- EMV规范 (1)
- Saturn Platform (0)
- C (10)
- SQL (2)
- ASP.NET (3)
- 英语口语学习 (3)
- 调试工具 (21)
- 编译技术 (5)
- UML (1)
- 项目管理 (5)
- 敏捷开发 (2)
- Http Server (6)
- 代码审查、代码分析 (5)
- 面试基础 (10)
- 重点知识 (16)
- STL (6)
- Efficient C++资料 (8)
- 数据结构和算法 (7)
- 读书笔记 (0)
- 开源项目 (4)
- 多线程 (2)
- Console App (6)
- 个人开源项目 (4)
- IBM DevelopWorks (4)
- Java (16)
- 内存泄漏相关调试和检测 (13)
- 软件测试相关技术 (2)
- C# (11)
- Apple Related (1)
- 软件测试和管理 (2)
- EMV (1)
- Python (1)
- Node.js (6)
- JavaScript (5)
- VUE (1)
- Frontend (1)
- Backend (4)
- RESTful API (3)
- Firebase (3)
最新评论
-
u013189503:
来个密码吧
[C++][Logging] 项目中写日志模块的实现 -
wyf_vc:
来个密码啊!!
[C++][Logging] 项目中写日志模块的实现
From:http://www.cplusplus.com/reference/std/limits/numeric_limits/
numeric_limits
浮点数据精度判断
float x=0.0;
float y=0.0f;
if ( abs(x -y) <= numeric_limits<float>::epsilon() )
{
...
}
<limits>
Numeric limits type
This class is specialized for each of the fundamental types, with its members returning or set to the different values that define the properties that type has in the specific platform in which it compiles.
For all the other types (non-fundamental types) a specialization of this class should not exist.
The non-specialized class is defined as:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
|
A specialization exists for each of the fundamental types: bool, char, signed char, unsigned char, wchar_t, short, unsigned short, int, unsigned int, long, unsigned long, float, double and long double. These specializations define the specific values for the different static const members, and all have is_specialized defined as true.
Members
is_specialized | bool | true on all specializations of the type, false in the non-specialized version. |
min() | T | Minimum finite value. For floating types with denormalization (variable number of exponent bits): minimum positive normalized value. Equivalent to CHAR_MIN, SCHAR_MIN, SHRT_MIN, INT_MIN, LONG_MIN, FLT_MIN, DBL_MIN, LDBL_MIN or 0, depending on type. |
max() | T | Maximum finite value. Equivalent to CHAR_MAX, SCHAR_MAX, UCHAR_MAX, SHRT_MAX, USHRT_MAX, INT_MAX, UINT_MAX, LONG_MAX, ULONG_MAX, FLT_MAX, DBL_MAX or LDBL_MAX, depending on type. |
digits | int | For integer types: number of non-sign bits (radix base digits) in the representation. For floating types: number of digits (in radix base) in the mantissa (equivalent to FLT_MANT_DIG, DBL_MANT_DIG or LDBL_MANT_DIG). |
digits10 | int | Number of digits (in decimal base) that can be represented without change. Equivalent to FLT_DIG, DBL_DIG or LDBL_DIG for floating types. |
is_signed | bool | true if type is signed. |
is_integer | bool | true if type is integer. |
is_exact | bool | true if type uses exact representations. |
radix | int | For integer types: base of the representation. For floating types: base of the exponent of the representation (equivalent to FLT_RADIX). |
epsilon() | T | Machine epsilon (the difference between 1 and the least value greater than 1 that is representable). Equivalent to FLT_EPSILON, DBL_EPSILON or LDBL_EPSILON for floating types. |
round_error() | T | Measure of the maximum rounding error. |
min_exponent | int | Minimum negative integer value for the exponent that generates a normalized floating-point number. Equivalent to FLT_MIN_EXP, DBL_MIN_EXP or LDBL_MIN_EXP for floating types. |
min_exponent10 | int | Minimum negative integer value such that 10 raised to that power generates a normalized floating-point number. Equivalent to FLT_MIN_10_EXP, DBL_MIN_10_EXP or LDBL_MIN_10_EXP for floating types. |
max_exponent | int | Maximum integer value for the exponent that generates a normalized floating-point number. Equivalent to FLT_MAX_EXP, DBL_MAX_EXP or LDBL_MAX_EXP for floating types. |
max_exponent10 | int | Maximum integer value such that 10 raised to that power generates a normalized finite floating-point number. Equivalent to FLT_MAX_10_EXP, DBL_MAX_10_EXP or LDBL_MAX_10_EXP for floating types. |
has_infinity | bool | true if the type has a representation for positive infinity. |
has_quiet_NaN | bool | true if the type has a representation for a quiet (non-signaling) "Not-a-Number". |
has_signaling_NaN | bool | true if the type has a representation for a signaling "Not-a-Number". |
has_denorm | float_denorm_style | Denormalized values (representations with a variable number of exponent bits). A type may have any of the following enum values: denorm_absent, if it does not allow denormalized values. denorm_present, if it allows denormalized values. denorm_indeterminate, if indeterminate at compile time. |
has_denorm_loss | bool | true if a loss of accuracy is detected as a denormalization loss, rather than an inexact result. |
infinity() | T | Representation of positive infinity, if available. |
quiet_NaN() | T | Representation of quiet (non-signaling) "Not-a-Number", if available. |
signaling_NaN() | T | Representation of signaling "Not-a-Number", if available. |
denorm_min() | T | Minimum positive denormalized value. For types not allowing denormalized values: same as min(). |
is_iec559() | T |
true if the type adheres to IEC-559 / IEEE-754 standard. An IEC-559 type always has has_infinity, has_quiet_NaN and has_signaling_NaN set to true; And infinity, quiet_NaN and signaling_NaN return some non-zero value. |
is_bounded | bool | true if the set of values represented by the type is finite. |
is_modulo | bool | true if the type is modulo. A type is modulo if it is possible to add two positive numbers and have a result that wraps around to a third number that is less. |
traps | bool | true if trapping is implemented for the type. |
tinyness_before | bool | true if tinyness is detected before rounding. |
round_style | float_round_style | Rounding style. A type may have any of the following enum values: round_toward_zero, if it rounds toward zero. round_to_nearest, if it rounds to the nearest representable value. round_toward_infinity, if it rounds toward infinity. round_toward_neg_infinity, if it rounds toward negative infinity. round_indeterminate, if the rounding style is indeterminable at compile time. |
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
Possible output:
Minimum value for int: -2147483648 Maximum value for int: 2147483647 int is signed: true Non-sign bits in int: 31 int has infinity: false |
See also
climits (limits.h) | Sizes of integral types (header) |
cfloat (float.h) | Characteristics of floating-point types (header) |
Test:
|
发表评论
-
FreeRTOS
2022-03-05 16:31 248Ref https://blog.csdn.net/weix ... -
串口通讯相关
2018-11-02 13:44 410https://bbs.csdn.net/wap/topics ... -
[转]C++验证IP是否可以PING通
2018-10-30 17:54 1325https://www.cnblogs.com/guoyz13 ... -
C++/MFC 換皮膚
2018-10-20 11:05 477https://blog.csdn.net/u01123991 ... -
WinCE 截屏 - C++ 代碼
2018-08-31 09:45 574// this function create a bmp ... -
Android NDK搭建環境
2017-11-27 13:25 580https://www.cnblogs.com/ut2016- ... -
8583协议相关
2017-10-17 13:38 5738583相关资料,整理中... -
Java高级应用之JNI
2017-06-19 09:00 600参考link http://www.cnblogs.com/l ... -
C++实现ping功能
2017-04-18 11:21 2154基础知识 ping的过程是向目的IP发送一个type=8的I ... -
OpenSSL 编译环境搭建
2017-03-27 15:01 9061 安裝VS2008到 c:\Program Files (x ... -
最优非对称加密填充(OAEP)
2017-03-25 14:53 1582OpenSSL命令---rsautl http://blog. ... -
[Platform Builder] 设置SVM OS build Env
2016-11-10 11:39 01 copy one OSDesign Project to ... -
[Windows] System Error Codes(GetLastError )0-----5999
2016-10-26 13:28 1880ERROR_SUCCESS 0 (0x0) T ... -
开源Windows驱动程序框架
2016-09-17 21:35 871转自 http://code.csdn.net/news/28 ... -
c/c++代码中执行cmd命令
2016-09-14 14:50 1908转自 http://blog.csdn.net/slixinx ... -
C#使用C++标准DLL实例(包含callback)
2016-09-11 19:44 1086C++编写标准Win32DLL如下 头文件 /***** ... -
C#调用C++的DLL搜集整理的所有数据类型转换方式
2016-09-09 16:07 969转自 http://www.cnblogs.com/zeroo ... -
WinCE CPU使用率计算 测试工具
2016-09-08 16:14 991转自 http://blog.csdn.net/jan ... -
switch在C++与C#中的一些差异
2016-09-08 15:19 810参考链接 http://blog.csdn.net/weiwe ... -
C++ 鼠标模拟程序
2016-09-04 12:09 1612转自 http://blog.csdn.net/weixinh ...
相关推荐
- **numeric_limits**:提供数值类型的最大值、最小值等信息。 #### 三、容器 (Container) **容器**是STL中的另一大类,它们是用来存储和管理不同类型数据的结构。STL中的容器大致可以分为序列容器和关联容器两大...
4. 使用`numeric_limits<type>::max()`和`numeric_limits<type>::min()`获取类型的最小值和最大值。 5. `endl`用于行缓冲,同时`cin`和`cout`都在`std`命名空间内。 6. C++支持C语言的输入输出,可以通过`#include...
10. **类型安全的算术运算**:例如,std::numeric_limits类提供了关于特定类型(如int、double)的边界和精度信息,防止溢出等错误。 C++ Standard Library是C++编程的强大工具箱,它极大地提升了开发者的生产力,...
在VC中,我们可以使用标准模板库(STL)或原始的C++语法来实现我们的目标。 计算最小值的基本思路是遍历给定的N个数,比较每个数与当前已知的最小值,如果找到更小的数,则更新最小值。这个过程可以通过循环结构...
### STL详解及实例代码 #### 一、STL简介 STL(Standard Template Library,标准模板库)是一种广泛应用于...22. **numeric_limits**:数值限制。 以上是STL的一些基础介绍和示例代码,希望对学习C++编程有所帮助。
### C++头文件大全 在C++编程语言中,头文件是极其重要的组成部分,它们包含了各种功能库的声明,能够帮助开发者实现复杂的功能而无需从底层编写代码。下面将详细介绍部分常用的C++标准库头文件及其主要成员函数。 ...
- **auto_ptrs的错误运用**:列出了常见的错误使用方法,并给出了解决方案。 - **auto_ptr运用实例**:通过实际例子展示了`std::auto_ptr`的应用场景。 - **数值极限(Numeric Limits)**:这部分详细解释了如何确定...
* `<numeric>`:STL常用的数字操作 * `<iomanip>`:参数化输入/输出 * `<ios>`:基本输入/输出支持 * `<iosfwd>`:输入/输出系统使用的前置声明 C99增加的部分头文件 C99增加的部分头文件是C语言的最新版本中添加...
书中详细介绍了C++标准库的各项功能,包括其组成部分、使用方法以及背后的原理。 #### 二、C++语言特点 - **模板(Templates)**:C++中的模板是一种强大的机制,允许开发者编写能够处理多种数据类型的函数或类。它...
Utilities <br/>4.1 Pairs <br/>4.1.1 Convenience Function <br/>4.1.2 Examples of Pair Usage <br/>4.2 Class <br/>4.3 Numeric Limits <br/>4.4 Auxiliary Functions <br/>4.5 ...
5.3 Numeric Limits . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 115 5.4 Type Traitsand Type Utilities . . . . . . . . . . . . . . . . . . . . . . . . . . . . 122 5.4.1 ...
这些知识点涵盖了从基本的类型定义到复杂的标准模板库(STL)组件,对于学习和掌握C++语言至关重要。 ### 1. C 标准库头文件 #### C99 之前的 C 标准库头文件 - **`<assert.h>`**:提供了断言宏 `assert()`,用于...
38. **利用类型安全的算术操作**:例如使用`std::numeric_limits`防止溢出。 39. **了解并使用智能指针**:如`std::unique_ptr`、`std::shared_ptr`和`std::weak_ptr`,以避免内存泄漏。 40. **利用C++的特性实现...
- `<numeric>`:STL的数值操作,如累加、平均值等。 - `<iomanip>`:格式化输入/输出。 - `<ios>`:基础输入/输出支持。 - `<iosfwd>`:输入/输出系统使用的前置声明。 - `<iostream>`:数据流输入/输出。 - `...
5. `<limits>`:定义了各种数据类型的最小值和最大值常量,如`std::numeric_limits`,用于获取类型边界。 6. `<list>`:实现了线性列表容器,通过双向链表实现,支持快速插入和删除。 7. `<map>`:提供了映射容器...