description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | |||
---|---|---|---|---|---|---|---|---|
Learn more about: is_const Class | is_const Class | 11/04/2016 |
|
| 55b8e887-9c3f-4a1d-823a-4a257337b205 |
Tests if type is const.
template <classTy> structis_const;
Ty
The type to query.
An instance of the type predicate holds true if Ty is const-qualified
.
// std__type_traits__is_const.cpp// compile with: /EHsc #include<type_traits> #include<iostream>structtrivial { int val; }; intmain() { std::cout << "is_const<trivial> == " << std::boolalpha << std::is_const<trivial>::value << std::endl; std::cout << "is_const<const trivial> == " << std::boolalpha << std::is_const<const trivial>::value << std::endl; std::cout << "is_const<int> == " << std::boolalpha << std::is_const<int>::value << std::endl; std::cout << "is_const<const int> == " << std::boolalpha << std::is_const<constint>::value << std::endl; return (0); }
is_const<trivial> == false is_const<const trivial> == true is_const<int> == false is_const<const int> == true
Header: <type_traits>
Namespace: std