0

我正在尝试使用模板类实现指向实现模式的指针,并且为了制作独立的类及其实现,我使用了下一种方法:

template<typename T>
struct __A_impl;

template<typename T>
struct A
{
    using __impl_t = __A_impl<T>;

    A(__impl_t* t);

    __impl_t* _t;
};

template<typename T>
struct B
{
    T _t;
};

template<typename T>
using __A_impl = B<T>;

使用这种形式,如果我想更改“B”的名称,这不会以任何方式影响 A 的定义。但是,我收到 gcc 的下一个错误:

test.cpp:21:22: error: declaration of template 'template<class T> using __A_impl =    B<T>'
test.cpp:2:7: error: conflicts with previous declaration 'template<class T> class __A_impl'
test.cpp:21:22: error: redeclaration of 'template<class T> using __A_impl = B<T>'
test.cpp:2:7: note: previous declaration 'template<class T> class __A_impl'

我怎样才能做到这一点?因为使用typedef声明符是不可能的。

4

2 回答 2

2

您不能转发声明 typedef。您只能转发声明类/结构/枚举。

此外,PIMPL 通常用于防止编译器看到实现,但在你的情况下,这永远不会发生,因为它是一个模板,所以我不明白这一点。

于 2013-01-27T11:30:31.017 回答
0

好吧,这编译,虽然它可能不是你想要的:

template<typename T>
struct B
{
    T _t;
};

template<typename T>
using __A_impl = B<T>;

template<typename T>
struct A
{
    using __impl_t = __A_impl<T>;

    A(__impl_t* t);

    __impl_t* _t;
};

总之,有两点:

  1. 为什么不直接使用std::unique_ptr
  2. 双下划线保留用于实现。不要使用它们。
于 2013-01-27T11:28:15.853 回答