std::floating_point
來自 cppreference.com
< cpp | 概念 (concepts)
定義於標頭檔案 <concepts> |
||
template< class T > concept floating_point = std::is_floating_point_v<T>; |
(C++20 起) | |
概念 floating_point<T> 當且僅當 T
為浮點型別時滿足。
[編輯] 示例
執行此程式碼
#include <concepts> #include <iostream> #include <type_traits> constexpr std::floating_point auto x2(std::floating_point auto x) { return x + x; } constexpr std::integral auto x2(std::integral auto x) { return x << 1; } int main() { constexpr auto d = x2(1.1); static_assert(std::is_same_v<double const, decltype(d)>); std::cout << d << '\n'; constexpr auto f = x2(2.2f); static_assert(std::is_same_v<float const, decltype(f)>); std::cout << f << '\n'; constexpr auto i = x2(444); static_assert(std::is_same_v<int const, decltype(i)>); std::cout << i << '\n'; }
輸出
2.2 4.4 888
[編輯] 參考
- C++23 標準 (ISO/IEC 14882:2024)
- 18.4.7 算術概念 [concepts.arithmetic]
- C++20 標準 (ISO/IEC 14882:2020)
- 18.4.7 算術概念 [concepts.arithmetic]
[編輯] 參閱
(C++11) |
檢查型別是否為浮點型別 (類模板) |