Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 762 Bytes

fp_zero.md

File metadata and controls

41 lines (31 loc) · 762 Bytes

FP_ZERO

  • cmath[meta header]
  • macro[meta id-type]
  • cpp11[meta cpp]
# define FP_ZERO integer_constant_expression
  • integer_constant_expression[italic]

概要

浮動小数点数が(正または負の) 0 であることを表す整数定数式。

備考

このマクロの値は、std::fpclassify において、引数が正、あるいは、負のゼロである場合に、戻り値として使用される。

#include <iostream>
#include <cmath>

int main()
{
  std::cout << std::boolalpha;
  std::cout << (std::fpclassify(0.0) == FP_ZERO) << std::endl;
}
  • FP_ZERO[color ff0000]
  • std::fpclassify[link fpclassify.md]

出力例

true

バージョン

言語

  • C++11