此函数在
句法:
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
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
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中,给定的浮点数不表示无穷大,这就是函数返回零的原因。
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。