如何在模板中添加常量限定符

How to add const qualifiers in template

本文关键字:常量 添加      更新时间:2023-10-16

即使T是一个指针,我也想const_value_type const std::add_const<>
所以我尝试了这样的事情:

template<typename value_type, bool is_pointer>
struct add_const_pointer{
    typedef const value_type type;
};
template<typename value_type>
struct add_const_pointer<value_type, true>{
    typedef const value_type *type;
};
template<typename T>
class Foo
{
public:
    typedef T value_type;
    typedef add_const_pointer<std::remove_pointer<T>, std::is_pointer<T>::value>::type const_value_type; 
    // here I get compiler error: missing type specifier - int assumed.
}

但我收到编译器错误:缺少类型说明符 - 假设为 int。

clang错误消息会有所帮助

typedef typename add_const_pointer<
//      ~~~~~~~~ Add typename
                  std::remove_pointer<T>, 
                  std::is_pointer<T>::value>::type 
                  const_value_type;