c – 本身就是模板的专业化

前端之家收集整理的这篇文章主要介绍了c – 本身就是模板的专业化前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个模板类,我有一些专长.
但下一个专业化是一个模板本身.你如何指定:
template<typename T>
class Action
{
    public: void doStuff()  { std::cout << "Generic\n"; }
}

// A specialization for a person
template<>
class Action<Person>
{
    public: void doStuff()  { std::cout << "A Person\n";}
}


// I can easily specialize for vectors of a particular type.
// But how  do I change the following so that it works with all types of vector.
// Not just `int`
template<>
class Action<std::vector<int> >
{
    public: void doStuff()  { std::cout << "A Generic Vector\n";}
}

解决方法

琐碎的部分专业化?
template <typename T>
class Action<std::vector<T>> {
public:
  void doStuff() { std::cout << "A Generic Vector\n"; }
};
原文链接:https://www.f2er.com/c/111988.html

猜你在找的C&C++相关文章