当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ isinf()用法及代码示例


isinf()函数用于确定给定数是否为无穷大,即正无穷大或负无穷大。如果给定数为无穷大,则此函数返回1;否则,此函数返回零。

用法:

bool isinf( float arg );

或者


bool isinf( double arg );

或者

bool isinf( long double arg );

参数:此函数采用强制性参数x,该参数表示给定的浮点值。

返回:如果给定数为无穷大,则此函数返回1,否则返回零。

以下示例程序旨在说明C++中的isinf()函数:

示例1:要显示返回1的无穷大情况

// c++ program to demonstrate 
// example of isnormal() function. 
  
#include <bits/stdc++.h> 
  
using namespace std; 
  
int main() 
{ 
  
    float f = 6.0F; 
  
    // check for +ve infinite value 
    cout << "isinf(6.0/0.0) is = " << isinf(f/0.0) << endl; 
  
    // check for -ve infinite value 
    f = -1.2F; 
    cout << "isinf(-1.2/0.0) is = " << isinf(f/0.0) << endl; 
  
    return 0; 
}
输出:
isinf(6.0/0.0) is = 1
isinf(-1.2/0.0) is = 1

说明:在示例1中,浮点数表示无穷大,这就是函数返回1的原因。

示例2:显示非无限情况返回0

// c++ program to demonstrate 
// example of isinf() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
   cout << "isinf(0.0) is = " << isinf(0.0) << endl; 
  
   cout << "isinf(sqrt(-1.0)) is = " << isinf(sqrt(-1.0)) << endl; 
  
   return 0; 
}
输出:
isinf(0.0) is = 0
isinf(sqrt(-1.0)) is = 0

异常:在示例2中,给定的浮点数不表示无穷大,这就是函数返回零的原因。



相关用法


注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 isinf() function in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。