gpt4 book ai didi

c++ - '仅将成员函数添加到类的专用模板

转载 作者:太空狗 更新时间:2023-10-29 20:51:08 25 4
gpt4 key购买 nike

我有一个模板类,我想为模板的特定特化添加一个特殊功能。此函数仅对 std::string 模板有意义。

我展示了我目前是如何处理这个问题的……问题是删除的函数对所有模板类型仍然可见,而不仅仅是我想使用它的 Match 模板。

有没有更优雅的方法来处理这个难题?

 template<typename T> 
class Match {

/*
*Class Definition
*
*/

void string_function() = delete;
};

template<>
void Match<Std::string>::string_function(){

//do something that only makes sense with strings
}

最佳答案

您可以将通用代码分解到基类模板中,并使用定制的功能进行派生特化。

template <typename T>
class BaseMatch { /* Common features across all specializations... */ };

template <typename T>
class Match : BaseMatch<T> { /* Generic case, no custom behavior to enforce */ };

template <>
class Match<std::string> : BaseMatch<std::string> {
void string_function() { /* ... */ }
};

关于c++ - '仅将成员函数添加到类的专用模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51655502/

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