gpt4 book ai didi

c++ - 将模板参数包存储为非类模板的属性

转载 作者:行者123 更新时间:2023-11-30 02:16:11 24 4
gpt4 key购买 nike

是否可以将传递给非类模板的构造函数的可变参数模板参数/参数包存储为该类的属性而不将该类转换为类模板?

我目前正在开发一个具有以下签名的瘦包装器类(我在这里只创建了一个最小的示例以最大程度地降低复杂性):

class Wrapper final {
public:
template <typename Function, typename... Args>
auto start(Function&& function, Args&&... args) -> void;
};

参数包传递给成员函数模板start<Function, ... Args>而且目前也不需要“存储” functionargs .完美转发用于该函数内的进一步处理。

现在,我想要实现的是如下签名(引入一个接口(interface)类):

class WrapperInterface {
public:
virtual ~WrapperInterface() = default;

virtual auto start() -> void = 0;
};

// TODO(2019-03-17 by wolters) The following is non-working pseudo-code.
class Wrapper final : public WrapperInterface {
public:
template <typename Function, typename... Args>
explicit Wrapper(Function&& function, Args&&... args)
: function_{function}, args_{args} {
// NOOP
}

auto start() -> void {
// TODO(2019-03-17 by wolters) Invoke `function_` with `args_`.
function_(args);
}

private:
std::function<???> function_;
std::tuple<???> args_;
};

然后 Wrapper可以按如下方式使用:

class WrapperClient final {
public:
WrapperClient() : wrapper_{[this](){
// std::cout << "started\n";
}} {
// NOOP
}

private:
Wrapper wrapper_;
};

虽然在上面的示例中不需要接口(interface)类,但通常需要它,因为实例应该存储在std::vector<std::unique_ptr<WrapperInterface>> 中。 .

我已阅读并尝试过 How to store variadic template arguments? , 但这种方法需要转动 Wrapper到类模板中。

我认为类似于 QThread *QThread::create(Function &&f, Args &&... args) implementation 的东西是必须的。遗憾的是,该代码对我来说太高级了。

你能指导我正确的方向吗?是否可以使用私有(private)实现类模板?

最佳答案

你正在尝试做的是所谓的类型删除,这是一种非常有趣的技术(示例和无耻的 self 推销 here ),但它已经在 std::function 中为你完成了。 , 所以你所要做的就是使用 std::function<void()>并使用 std::bind或 lambda 捕获来存储参数:

template <typename Function, typename... Args>
std::function<void()> wrap(Function&& function, Args&&... args)
{
return [=] { function(args); };
// or return std::bind(std::forward<Function>(function), std::forward<Args>(args)...);
}

关于c++ - 将模板参数包存储为非类模板的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55205909/

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