gpt4 book ai didi

c++ - 如何将构造函数转换为 std::function

转载 作者:行者123 更新时间:2023-11-28 01:17:44 24 4
gpt4 key购买 nike

<分区>

有什么方法可以将构造函数分配给像“f”这样的函数:

struct C
{
C(int){};
};

auto f = C::C(int); // not work
auto g = [](int){ return C(int()); }; // works

C、C::C、&C、&C::C、C::&C、C::C(int)、&C::C(int) ... 都不起作用

Frid​​ay Pie 提出的解决方案:

template <class T>
struct ConstructHelper
{
template <class... Args>
static T&& construct(Args&&... args)
{
return std::move(T(std::forward<Args>(args)...));
}
};

auto f = ConstructHelper<C>::construct<int>; // works
auto c = apply(f, 0); // works

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