Udostępnij za pośrednictwem


integral_constant Class

Sprawia, że typ integralną stałej fromt i wartości.

template <class Ty, Ty v>
    struct integral_constant;

Parametry

  • Ty
    Typ stałej.

  • Ty
    Wartość stałej.

Uwagi

Klasa szablonu, kiedy wyspecjalizowane z typem całkowitym i wartość tego typu reprezentuje obiekt, który posiada stała typu integralną określonej wartości.

Przykład

 

// std_tr1__type_traits__integral_constant.cpp 
// compile with: /EHsc 
#include <type_traits> 
#include <iostream> 
 
int main() 
    { 
    std::cout << "integral_constant<int, 5> == " 
        << std::integral_constant<int, 5>::value << std::endl; 
    std::cout << "integral_constant<bool, false> == " << std::boolalpha 
        << std::integral_constant<bool, false>::value << std::endl; 
 
    return (0); 
    } 
 
  

Wymagania

Nagłówek: <type_traits>

Obszar nazw: std

Zobacz też

Informacje

<type_traits>

false_type Typedef

true_type Typedef

Inne zasoby

<type_traits> Członkowie