C++ 中的nexttoward() 函数接受两个参数并返回 x 之后沿 y 方向的下一个可表示值。
该函数在<cmath> 头文件中定义。
它与 nextafter() 相同,只是 nexttoward() 的第二个参数始终为 long double
类型。
nexttoward() 原型 [从 C++ 11 标准开始]
double nexttoward(double x, long double y); float nexttoward(float x, long float y); long double nexttoward(long double x, long double y); double nexttoward(T x, long double y); // For integral type
nexttoward() 函数接受两个参数并返回 double
, float
或 long double
类型的值。
参数:
- x: 基础值。
- y: 返回值的近似值。
返回:
nexttoward() 函数返回 x 之后沿 y 方向的下一个可表示值。
示例 1:nexttoward() 函数在 C++ 中如何工作?
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
long double y = -1.0;
double x = 0.0;
double result = nexttoward(x, y);
cout << "nexttoward(x, y) = " << result << endl;
return 0;
}
运行程序时,输出将是:
nexttoward(x, y) = -4.94066e-324
示例 2:用于整数类型的 nexttoward() 函数
#include <iostream>
#include <cmath>
#include <climits>
using namespace std;
int main()
{
long double y = INFINITY;
int x = INT_MAX;
double result = nexttoward(x,y);
cout << "nexttoward(x, y) = " << result << endl;
return 0;
}
运行程序时,输出将是:
nexttoward(x, y) = 2.14748e+09
相关用法
- C++ nextafter()用法及代码示例
- C++ negate用法及代码示例
- C++ nearbyint()用法及代码示例
- C++ norm()用法及代码示例
- C++ none_of()用法及代码示例
- C++ nanl()用法及代码示例
- C++ nanf()用法及代码示例
- C++ nan()用法及代码示例
- C++ unordered_map cbegin用法及代码示例
- C++ map lower_bound()用法及代码示例
- C++ Unordered_multimap reserve()用法及代码示例
- C++ list assign()用法及代码示例
- C++ std::max()用法及代码示例
- C++ std::string::push_back()用法及代码示例
- C++ Array swap()用法及代码示例
- C++ valarray cos用法及代码示例
- C++ multimap key_comp()用法及代码示例
- C++ Deque erase()用法及代码示例
- C++ List cend()用法及代码示例
- C++ std::less_equal用法及代码示例
注:本文由纯净天空筛选整理自 C++ nexttoward()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。