3

为什么我必须将其更改int *为 atypedef int * IntPtr才能编译?

template <class T>
class A
{
    public:
        template <class X>
        void a(X *x, void (X::*fun)(const T&))
        {
        }
};

typedef int * IntPtr;

class B
{
    public:
        B() : a()
        {
            a.a(this, &B::foo); // this won't work
        }
        void foo(const int *&) // must replace `int *` here with `IntPtr`
        {
        }
        A<int *> a; // ...and here
};

class C
{
    public:
        C() : a()
        {
            a.a(this, &C::foo);
        }
        void foo(const IntPtr&)
        {
        }
        A<IntPtr> a;
};

我明白为什么 typedef 有用,但不明白为什么需要它们。该类C编译得很好B

这是来自 MSVC++ 2008 编译器的错误:

Error   1   error C2784: 'void A<T>::a(X *,void (__thiscall X::* )(const T &))' : could not deduce template argument for 'void (__thiscall X::* )(const T &)' from 'void (__thiscall B::* )(const int *&)'
4

1 回答 1

13

const int*&并且typedef int* IntPtr; const IntPtr&不一样。在第一种情况下,它是常量,在第二种情况下,它是指针。只有第二种情况与您的模板兼容。

如果你写

void foo(int * const &);

相反,它应该可以编译并正常工作。

于 2012-08-02T13:36:22.330 回答