我正在尝试创建一个模板包装器类,该类从其模板参数继承,并且一口气覆盖了特定基本成员函数的所有重载。这是一个例子:
#include <cassert>
#include <string>
#include <utility>
template <class T>
class Wrapper: public T {
public:
template <typename... Args>
Wrapper<T>& operator=(Args&&... args) {
return this_member_fn(&T::operator=, std::forward<Args>(args)...);
}
private:
template <typename... Args>
Wrapper<T>& this_member_fn(T& (T::*func)(Args...), Args&&... args) {
(this->*func)(std::forward<Args>(args)...);
return *this;
}
};
int main(int, char**) {
Wrapper<std::string> w;
const std::string s("!!!");
w = s;
assert(w == s);
w = std::string("???");
assert(w == std::string("???"));
return 0;
}
想法是
Wrapper<T>::operator=
的模板将在编译时根据其参数选择正确的T::operator =,然后将其转发。如果我用gcc -std=c++11 -W -Wall -Wextra -pedantic test.cpp -lstdc++
我收到来自gcc的以下投诉:
test.cpp: In instantiation of ‘Wrapper<T>& Wrapper<T>::operator=(Args&& ...) [with Args = {std::basic_string<char, std::char_traits<char>, std::allocator<char> >}; T = std::basic_string<char>]’:
test.cpp:26:24: required from here
test.cpp:10:69: error: no matching function for call to ‘Wrapper<std::basic_string<char> >::this_member_fn(<unresolved overloaded function type>, std::basic_string<char>)’
test.cpp:10:69: note: candidate is:
test.cpp:15:15: note: Wrapper<T>& Wrapper<T>::this_member_fn(T& (T::*)(Args ...), Args&& ...) [with Args = {std::basic_string<char, std::char_traits<char>, std::allocator<char> >}; T = std::basic_string<char>]
test.cpp:15:15: note: no known conversion for argument 1 from ‘<unresolved overloaded function type>’ to ‘std::basic_string<char>& (std::basic_string<char>::*)(std::basic_string<char>)’
test.cpp: In member function ‘Wrapper<T>& Wrapper<T>::operator=(Args&& ...) [with Args = {std::basic_string<char, std::char_traits<char>, std::allocator<char> >}; T = std::basic_string<char>]’:
test.cpp:11:3: warning: control reaches end of non-void function [-Wreturn-type]
第26行是
w = std::string("???");
,第15行是this_member_fn的声明,因此似乎编译器认为func
(= std::string::operator=
)具有的类型不是预期的类型。有没有办法像我一样使用模板化的
operator=
做到这一点,而不是分别覆盖基类中的每个operator=
? 最佳答案
如果您打算当场使用成员(member)的地址,则无需填写。这也省去了寻找哪个重载版本的问题。
template<
typename U
, typename std::enable_if<
std::is_assignable<T&, U>::value
, int
>::type = 0
>
Wrapper& operator=(U&& u)
{
static_cast<T&>(*this) = std::forward<U>(u);
return *this;
}
强烈建议使用约束条件(通过
std::enable_if
进行SFINAE测试),否则尝试通过将Wrapper<int> w, v; w = v;
分配给Wrapper<int>
,使诸如int
这样的简单操作失败。有了约束,特殊成员Wrapper& operator=(Wrapper const&);
将被正确选择。关于c++ - 基本成员函数的所有重载都可以被单个模板成员函数覆盖并转发吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11195361/