gpt4 book ai didi

c++ - 通过 C++ 中的模板参数传递类构造函数

转载 作者:太空狗 更新时间:2023-10-29 23:46:49 26 4
gpt4 key购买 nike

我知道函数可以通过 template 参数传递,我可以像这样传递类 Constructor 吗?

更新:我想要这样做的全部原因是,我可以在内存池中选择构造函数,而无需更改我要分配的类中的任何代码(在本例中为 class A)

class A
{
public:
A(){n=0;}
explicit A(int i){n=i;}

private:
int n;
};

class MemoryPool
{
public:
void* normalMalloc(size_t size);
template<class T,class Constructor>
T* classMalloc();
};

template<class T,class Constructor>
T* MemoryPool::classMalloc()
{
T* p = (T*)normalMalloc(sizeof(T));
new (p) Constructor; // choose constructor
return p;
}

MemoryPool pool;
pool.classMalloc<A,A()>(); //get default class
pool.classMalloc<A,A(1)>();

最佳答案

您不能传递构造函数,但可以传递工厂仿函数:

class A
{
int n;

A(int i) : n(i) {};

public:

static A* makeA(int i)
{
return new A(i);
}
};

template<typename T, typename Factory>
T* new_func(Factory factory)
{
return factory();
}

#include <functional>

int main()
{
new_func<A>(std::bind(&A::makeA, 0));
new_func<A>(std::bind(&A::makeA, 1));
}

关于c++ - 通过 C++ 中的模板参数传递类构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8769911/

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