当前位置:  开发笔记 > 编程语言 > 正文

C++模板:好的VC2005SP1,gcc拯救了吗?

如何解决《C++模板:好的VC2005SP1,gcc拯救了吗?》经验,为你挑选了1个好方法。

我很困惑,请求你的帮助.VC2005SP1吞下这个(剥离的)代码,但是gcc 4.0.1拯救了...请指出我明显的错误?TIA!

template
class Factory
{
public:
    template
    bool Register(UIDT UniqueID)
    {
        if (UniqueID > 10)
            return(false);

        CreateObject2;

        return(true);
    }
};


template 
class Manager : public Factory
{
public:
    bool RegisterType(const MT Type, const std::string TypeName)
    {
        return Factory::Register(Type); // gcc claims "expected primary-expression before '>' at this point
    }
};

Logan Capald.. 5

VS很善良.

return Factory::template Register(Type); 应该在两个编译器下工作.



1> Logan Capald..:

VS很善良.

return Factory::template Register(Type); 应该在两个编译器下工作.

推荐阅读
牛尾巴2010
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有