gpt4 book ai didi

c++ - 如何重载模板函数

转载 作者:太空宇宙 更新时间:2023-11-03 10:37:35 25 4
gpt4 key购买 nike

我试图在类中重载模板函数,但没有成功。

如何在我的代码中重载模板。

class CommandInterfaceFont
{
private:
std::map < std::string, FontParam > lookUpMap;

public:
CommandInterfaceFont();
friend class SumCommandInterface;

template <typename plug , typename typeValue >
void SetValue(plug* geom, std::string stdstrParamName, typeValue value);

};

/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

template <typename plug >
void CommandInterfaceFont::SetValue(plug* geom, std::string stdstrParamName, std::string value)
{
geom->setText(value);
}

template <typename plug >
void CommandInterfaceFont::SetValue(plug* geom, std::string stdstrParamName, bool value)
{
geom->setUseShadow(value);
}

最佳答案

代替

template <typename plug , typename typeValue >
void SetValue(plug* geom, std::string stdstrParamName, typeValue value);

像这样声明成员函数:

template <typename plug >
void SetValue(plug* geom, std::string stdstrParamName, std::string value);

template <typename plug >
void SetValue(plug* geom, std::string stdstrParamName, bool value);

如果重载是你想要的。你的例子看起来更像 specialization .

关于c++ - 如何重载模板函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57849926/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com