gpt4 book ai didi

c++ - 来自用作模板参数的指针的类类型

转载 作者:太空狗 更新时间:2023-10-29 19:47:11 26 4
gpt4 key购买 nike

如果将指向用户定义类型的指针作为模板参数传递给模板类,是否可以获取参数的类类型?

template <class T> struct UserType {
typedef T value_type;
...
};

int main () {
typedef std::vector<UserType<double>*> vecType
vecType vec;

vecType::value_type::value_type m; //how to get the double here?

return 0;
}

最佳答案

使用特征:

template <typename> struct ptr_traits {};
template <typename T> struct ptr_traits<T*>
{ typedef T value_type; };

ptr_traits<vecType::value_type>::value_type m;

关于c++ - 来自用作模板参数的指针的类类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3236370/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com