gpt4 book ai didi

c++ - 如何为其他类成员函数编写模板包装器方法?

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

我尝试为具有不同参数的不同函数创建一个模板化包装器。该设置是一个 A 类,具有两个方法 foobar 的基本实现。另一个类 B 将包装这些方法并添加新功能。

来自以下链接的解决方案非常适用于非类函数: c++11: Templated wrapper function

但是如果我尝试调用另一个类的方法,我会得到一个错误。

#include <algorithm>
#include <functional>
#include <iostream>

class A
{
public:
void foo(int x) {
std::cout << "Foo: " << x << std::endl;
}

void bar(int x, float y) {
std::cout << "Bar: " << x << ", " << y << std::endl;
}
};

class B
{
public:
void fooAndMore(int x) {
foobarWrapper(&A::foo, 1);
}

void barAndMore(int x, float y) {
foobarWrapper(&A::bar, 1, 3.5f);
}

template<typename T, typename... Args>
void foobarWrapper(T&& func, Args&&... args)
{
std::cout << "Start!" << std::endl;
std::forward<T>(func)(std::forward<Args>(args)...);
std::cout << "End!" << std::endl;
}
};

int main()
{
B b;
b.fooAndMore(1);
b.barAndMore(2, 3.5f);
}

我期待这样的事情:

Start!
Foo: 1
End!
Start!
Bar: 1, 3.5
End!

但我得到的是:

error C2064: term does not evaluate to a function taking 1 arguments
note: see reference to function template instantiation 'void B::foobarWrapper<void(__thiscall A::* )(int),int>(T &&,int &&)' being compiled
with
[
T=void (__thiscall A::* )(int)
]

error C2064: term does not evaluate to a function taking 2 arguments
note: see reference to function template instantiation 'void B::foobarWrapper<void(__thiscall A::* )(int,float),int,float>(T &&,int &&,float &&)' being compiled
with
[
T=void (__thiscall A::* )(int,float)
]

知道如何解决这个问题吗?

最佳答案

最简单的修复方法是将类A 的成员函数设为static( See online )

class A
{
public:
static void foo(int x) {
^^^^^^
std::cout << "Foo: " << x << std::endl;
}

static void bar(int x, float y) {
^^^^^^
std::cout << "Bar: " << x << ", " << y << std::endl;
}
};

否则,您需要传递类A 的实例,以在foobarWrapper 函数中调用其成员函数。使用 lambda,您可以将它们打包到可调用的 func 并传递给 foobarWrapper

( See online )

class B
{
public:
void fooAndMore(const A& a_obj, int x) {
foobarWrapper([&]() { return a_obj.foo(x); });
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^Args captured to the lambda
}

void barAndMore(const A& a_obj, int x, float y) {
foobarWrapper([&]() { return a_obj.bar(x, y); });
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Args captured to the lambda
}

template<typename T>
void foobarWrapper(T&& func) // no Args needed any more (@credits Jarod42)
{
std::cout << "Start!" << std::endl;
std::forward<T>(func)(); // simply call the func
std::cout << "End!" << std::endl;
}
};

int main()
{
B b;
b.fooAndMore(A{}, 1); // pass a temporary A object
b.barAndMore(A{}, 2, 3.5f);
}

关于c++ - 如何为其他类成员函数编写模板包装器方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56605952/

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