函数
<cmath> <ctgmath>

exp2

     double exp2  (double x);      float exp2f (float x);long double exp2l (long double x);
     double exp2 (double x);      float exp2 (float x);long double exp2 (long double x);     double exp2 (T x);           // additional overloads for integral types
计算二进制指数函数
返回 x以 2 为底的指数函数,即 2x 次幂:2x

头文件 <tgmath.h> 提供了此函数的类型通用宏版本。
此头文件 (<cmath>) 中为整型提供了额外的重载:这些重载在计算前有效地将 x 转换为 double(定义为 T 是任何整型)。

参数

x
指数的值。

返回值

2x 次幂。
如果结果的量级太大,无法用返回类型的值表示,函数将返回带有正确符号的 HUGE_VAL(或 HUGE_VALFHUGE_VALL),并发生上溢范围错误

如果发生上溢范围错误
- 并且 math_errhandling 设置了 MATH_ERRNO:全局变量 errno 被设置为 ERANGE
- 并且 math_errhandling 设置了 MATH_ERREXCEPT:将引发 FE_OVERFLOW

示例

1
2
3
4
5
6
7
8
9
10
11
12
/* exp2 example */
#include <stdio.h>      /* printf */
#include <math.h>       /* exp2 */

int main ()
{
  double param, result;
  param = 8.0;
  result = exp2 (param);
  printf ("2 ^ %f = %f.\n", param, result );
  return 0;
}

输出

2 ^ 8.000000 is 256.000000.


另见