1

我有一个自定义内存分配器,我在其中使用 std::forward 转发构造函数参数。如果构造的类在其构造函数中有枚举,我会遇到问题。

这是显示错误的示例代码:

class Monkey
{
public:

    enum TestEnum
    {
        TEST1 = 0,
        TEST2
    };

    Monkey(int age, TestEnum e) : mAge(age), mE(e)
    {
    }


private:
    TestEnum mE;
    int mAge;
};

template <class T, typename... Arguments>
T* AllocateObject(Arguments&&... args) { return new (malloc(sizeof(T))) T(std::forward<Arguments>(args)...); }


int _tmain(int argc, _TCHAR* argv[])
{
    Monkey* m = AllocateObject<Monkey>(100, Monkey::TEST1);

    return 0;
}

编译器向我抛出这些错误;

error C2065: 'TestEnum' : undeclared identifier
error C2974: 'std::forward' : invalid template argument for '_Ty', type expected
fatal error C1903: unable to recover from previous error(s); stopping compilation

这是什么原因造成的?不应该std::forward处理这个?

4

0 回答 0