当前位置: C语言 -- 标准库 -- <math.h> -- isnormal

isnormal宏


概要:
#include <math.h>
int isnormal(real-floating x);

描述:

该宏是函数式宏(function-like macro),判断参数是否为规格化数(normal number)。0、次规格化数、无穷大、非数值均不是规格化数。

如果参数x的表示形式宽于real-floating,将转换成real-floating类型;然后再根据real-floating类型进行判断。


参数:
real-floating x

参数x应为实数浮点类型表达式,例如:floatdoublelong double类型表达式。


返回值:

如果参数x是规格化数,该宏返回非0值。


范例:
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 
/*宏isnormal范例*/

#include <float.h>
#include <math.h>
#include <stdio.h>

int main(void)
{
    if(isnormal(0.0))
        puts("0.0 is normal.");

    if(isnormal(3.14))
        puts("3.14 is normal.");

    if(isnormal(DBL_MIN/2))
        puts("DBL_MIN/2.0 is normal.");

    if(isnormal(0.0/0.0))
        puts("0.0/0.0 is normal.");

    if(isnormal(1.0/0.0))
        puts("1.0/0.0 is normal.");

    return 0;
}

输出:

3.14 is normal.


相关内容:
fpclassify 对参数按浮点类别进行分类的宏。
isfinite 判断参数是否为有限值的宏。
isinf 判断参数是否为无穷大的宏。
isnan 判断参数是否为非数值的宏。