remove_const Class
從型別,可讓非常數的型別。
template<class Ty>
struct remove_const;
參數
- Ty
若要修改型別。
備註
執行個體的型別修飾詞會保留修改型別是Ty1時Ty的表單是const Ty1,否則Ty。
範例
// std_tr1__type_traits__remove_const.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
int main()
{
int *p = (std::remove_const<const int>::type *)0;
p = p; // to quiet "unused" warning
std::cout << "remove_const<const int> == "
<< typeid(*p).name() << std::endl;
return (0);
}
需求
標頭: <type_traits>
Namespace: 標準