如何键入未定义参数的模板? [重复]

问题描述

|                                                                                                                   这个问题已经在这里有了答案:                                                      

解决方法

可能为时已晚。这是链接的副本。
template <typename First,typename Second,int Third>
class SomeType;

template <typename Second>
using TypedefName = SomeType<OtherType,Second,5>;
由gcc-4.7和4.8支持。 IDE可能需要手动设置标志
 -std=c11
    ,在类内部使用typedef:
#include <vector>

template <typename T>
struct container
{
typedef std::vector<T> cont;
};

int main()
{
  container<int>::cont q;
  q.push_back(4);
}