6

我正在尝试编译以下代码,但似乎有一个我似乎无法解决的问题:

template <int x>
struct count_x
{
   enum { x_size = x };
};

template <typename y>
struct crtp_base
{
   typedef typename y::count_t count_t;
   crtp_base(const count_t&){}
};

template <int x>
struct derived : public crtp_base<derived<x> >
{
   typedef typename count_x<x> count_t;
   typedef crtp_base<derived<x> > base_t;
   derived(const count_t& c) : base_t(c){}
};


int main()
{
   derived<2> d((count_x<2>()));
   return 0;
}

使用 clang 3.1 编译时,错误如下:

c:\clangllvm\code\example.cc:18:21: error: expected a qualified name after 'typename'
   typedef typename count_x<x> count_t;
                    ^
c:\clangllvm\code\example.cc:18:21: error: typedef name must be an identifier
   typedef typename count_x<x> count_t;
                    ^~~~~~~~~~
c:\clangllvm\code\example.cc:18:28: error: expected ';' at end of declaration list
   typedef typename count_x<x> count_t;
                           ^
                           ;
c:\clangllvm\code\example.cc:20:18: error: no template named 'count_t'; did you mean 'count_x'?
   derived(const count_t& c)
                 ^~~~~~~
                 count_x
c:\clangllvm\code\example.cc:2:8: note: 'count_x' declared here
struct count_x
       ^
c:\clangllvm\code\example.cc:20:18: error: use of class template count_x requires template arguments
   derived(const count_t& c)
                 ^
c:\clangllvm\code\example.cc:2:8: note: template is declared here
struct count_x
       ^
5 errors generated.

我相信这与模板在编译时确定的方式以及它们是否在正确的时间被确定为类型有关。我也尝试添加“使用 base_t::count_t;”无济于事。除此之外,编译器产生的诊断让我真的迷失了方向。将不胜感激有关阅读此错误的内容的答案或建议。

4

1 回答 1

2

count_x<x>不是一个限定名称(它根本没有::!),所以它不能在前面加上typename.

修复此问题后,代码仍然会失败,因为在实例化 CRTP 基时,编译器还没有看到派生类型的嵌套 typedef。这个另一个问题显示了一些替代方案。

于 2012-10-12T03:11:13.183 回答