◐ Shell
clean mode source ↗

std::integral_constant - cppreference.com

提供: cppreference.com

<tbody> </tbody>

template< class T, T v > struct integral_constant;

(C++11以上)

std::integral_constant は指定された型の static な定数をラップします。 これは C++ の型特性のための規定クラスです。

ヘルパーテンプレート

Tbool である一般的なケースのためにヘルパーエイリアステンプレート std::bool_constant が定義されます。

<tbody> </tbody>

template <bool B> using bool_constant = integral_constant<bool, B>;

(C++17以上)

Tbool である一般的なケースのために2つの typedef が提供されます。

ヘッダ <type_traits> で定義

定義
true_type std::integral_constant<bool, true>
false_type std::integral_constant<bool, false>

メンバ型

定義
value_type T
type std::integral_constant<T,v>

メンバ定数

名前
v を持つ型 T の static な定数
(パブリック静的メンバ定数)

メンバ関数

std::integral_constant::operator value_type

<tbody> </tbody>

constexpr operator value_type() const noexcept;

変換関数。 ラップされた値を返します。

std::integral_constant::operator()

<tbody> </tbody>

constexpr value_type operator()() const noexcept;

(C++14以上)

ラップされた値を返します。 この関数は std::integral_constant をコンパイル時関数オブジェクトのソースとして使用できるようにします。

実装例

template<class T, T v>
struct integral_constant {
    static constexpr T value = v;
    using value_type = T;
    using type = integral_constant; // using injected-class-name
    constexpr operator value_type() const noexcept { return value; }
    constexpr value_type operator()() const noexcept { return value; } //since c++14
};

#include <iostream>
#include <type_traits>

int main() 
{
    typedef std::integral_constant<int, 2> two_t;
    typedef std::integral_constant<int, 4> four_t;

//  static_assert(std::is_same<two_t, four_t>::value,
//                "two_t and four_t are not equal!"); 
//  error: static assertion failed: "two_t and four_t are not equal!"

    static_assert(two_t::value*2 == four_t::value,
       "2*2 != 4"
    );

    enum class my_e {
       e1,
       e2
    };
    typedef std::integral_constant<my_e, my_e::e1> my_e_e1;
    typedef std::integral_constant<my_e, my_e::e2> my_e_e2;

//  static_assert(my_e_e1::value == my_e::e2,
//               "my_e_e1::value != my_e::e2");
//  error: static assertion failed: "my_e_e1::value != my_e::e2"

    static_assert(std::is_same<my_e_e2, my_e_e2>::value,
                  "my_e_e2 != my_e_e2");
}