gpt4 book ai didi

c++11 - 使用 operator new 作为仿函数/函数指针

转载 作者:行者123 更新时间:2023-12-04 23:46:27 24 4
gpt4 key购买 nike

在 C++11 中,假设我有一个函数,它接受一个仿函数/函数,并将参数转发给该函数。我可以传入一个指向 std::make_shared 的指针,这会导致它实例化一个类并调用其构造函数。但是,用原始的 operator new 做这件事有什么等价的呢?看起来 std::allocator 是我应该使用的,但是那里的 construct 函数需要一个指向已分配内存的指针。我可以通过将 new 调用包装到模板函数 new_object 中来使其工作,但似乎应该有一种方法可以让我直接检索该函数指针。

这是我目前所拥有的:

#include <iostream>
#include <memory>

struct foo
{
foo(int i, const std::string& s)
{
std::cout << "i = " << i << " s = " << s << std::endl;
}
};

template <typename F, typename... Args>
void do_something(F f, Args&&... args)
{
f(std::forward<Args>(args)...);
}

// Is there a way to avoid this wrapper and handing a function pointer to
// something like ::new<foo, int, std::string> directly? Similar to std::make_shared<foo>?
template <typename C, typename... Args>
C* new_object(Args&&... args)
{
return new C(std::forward<Args>(args)...);
}

int main()
{
do_something(std::make_shared<foo, int, std::string>, 1, "test1"); // This works
do_something(new_object<foo, int, std::string>, 12, "test2");
return 0;
}

最佳答案

为什么不是这样的呢?

   std::allocator<foo> alloc;
do_something(std::bind(&std::allocator<foo>::construct<foo, int, std::string>, &alloc, alloc.allocate(sizeof(foo)), std::placeholders::_1, std::placeholders::_2), 12, "test2");

关于c++11 - 使用 operator new 作为仿函数/函数指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60154783/

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