gpt4 book ai didi

c++ - 从模板检查成员函数重载是否存在

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:59:22 25 4
gpt4 key购买 nike

是否可以从模板成员函数中检查一个类是否有某个成员函数重载?

我能找到的最好的类似问题是这个:Is it possible to write a template to check for a function's existence?据我了解,这不适用于检查函数重载的情况。

这是一个如何应用它的简化示例:

struct A;
struct B;

class C
{
public:
template<typename T>
void doSomething(std::string asdf)
{
T data_structure;

/** some code */

if(OVERLOAD_EXISTS(manipulateStruct, T))
{
manipulateStruct(data_structure);
}

/** some more code */
}

private:
void manipulateStruct(B& b) {/** some different code */};
}

我的问题是是否存在某种标准方法可以使代码的以下用法起作用:

int main(int argc, const char** argv)
{
C object;
object.doSomething<A>("hello");
object.doSomething<B>("world");
exit(0);
}

我能想到的唯一方法是简单地为结构 A 创建 manipulateStruct 的空重载。否则操作方法当然也可以放入要操作的结构中,这将使 SFINAE 成为一个选项。让我们假设这两种情况都不可能发生。

有没有什么方法可以使类似于上述代码的代码正常工作?是否存在类似于 OVERLOAD_EXISTS 的东西,让编译器知道何时将 manipulateStruct 部分添加到生成的代码中?或者是否有一些聪明的方法可以让 SFINAE 为这种情况工作?

最佳答案

测试重载是否存在(C++11)

自 C++11 起,您可以混合使用 std::declvaldecltype测试特定过载的存在:

// If overload exists, gets its return type.
// Else compiler error
decltype(std::declval<C&>().manipulateStruct(std::declval<T&>()))

这可以用于 SFINAE 构造:

class C {
public:
// implementation skipped
private:
// Declared inside class C to access its private member.
// Enable is just a fake argument to do SFINAE in specializations.
template<typename T, typename Enable=void>
struct can_manipulate;
}

template<typename T, typename Enable>
struct C::can_manipulate : std::false_type {};

// Implemented outside class C, because a complete definition of C is needed for the declval.
template<typename T>
struct C::can_manipulate<T,std::void_t<decltype(std::declval<C&>().manipulateStruct(std::declval<T&>()))>> : std::true_type {};

这里我忽略了使用 std::void_t 重载的返回类型(C++17,但 C++11 替代方案应该是可能的)。如果要查看返回类型,可以传给std::is_samestd::is_assignable .

doSomething 实现

C++17

这可以通过 constexpr if 来完成:

template<typename T>
void doSomething(std::string asdf) {
T data_structure;
if constexpr (can_manipulate<T>::value) {
manipulateStruct(data_structure);
}
}

if constexpr 将使编译器在条件计算为 false 时丢弃 statement-true。如果没有 constexpr,编译将要求 if 中的函数调用在所有情况下都有效。

Live demo (C++17 full code)

C++11

您可以使用 SFINAE 模拟 if constexpr 行为:

class C {
// previous implementation
private:
template<typename T, typename Enable=void>
struct manipulator;
}

template<typename T, typename Enable>
struct C::manipulator {
static void call(C&, T&) {
//no-op
}
};

// can_manipulate can be inlined and removed from the code
template<typename T>
struct C::manipulator<T, typename std::enable_if<C::can_manipulate<T>::value>::type> {
static void call(C& object, T& local) {
object.manipulateStruct(local);
}
};

函数体:

template<typename T>
T doSomething()
{
T data_structure;
// replace if-constexpr:
manipulator<T>::call(*this, data_structure);
}

Live demo (C++11 full code)

关于c++ - 从模板检查成员函数重载是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50842493/

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