6

我正在使用 gcc/4.7,我需要在模板函数(或成员函数)中使用模板模板参数实例化一个类。我收到以下错误

test.cpp: In function 'void setup(Pattern_Type&)':
test.cpp:17:34: error: type/value mismatch at argument 1 in template parameter list for 'template<template<class> class C> struct A'
test.cpp:17:34: error:   expected a class template, got 'typename Pattern_Type::traits'
test.cpp:17:37: error: invalid type in declaration before ';' token
test.cpp:18:5: error: request for member 'b' in 'a', which is of non-class type 'int'

通过注释代码片段中标记的两行代码运行,因此 A a 可以在“main”中实例化,但不能在“setup”中实例化。我认为其他人也会对此感兴趣,并且我很高兴了解代码不起作用的原因。这是代码

struct PT {
  template <typename T>
  struct traits {
    int c;
  };
};

template <template <typename> class C>
struct A {
  typedef C<int> type;
  type b;
};

template <typename Pattern_Type>
void setup(Pattern_Type &halo_exchange) {
  A<typename Pattern_Type::traits> a; // Line 17: Comment this
  a.b.c=10; // Comment this
}

int main() {
  A<PT::traits> a;

  a.b.c=10;

  return 0;
}

感谢您的任何建议和修复!毛罗

4

1 回答 1

10

您需要标记Pattern_Type::traits为模板:

A<Pattern_Type::template traits> a;

这是必需的,因为它依赖于模板参数Pattern_Type

你也不应该typename在那里使用,因为traits它是一个模板,而不是一个类型。

于 2012-12-20T14:50:12.663 回答