我正在尝试拥有一个为调用类分配 shared_ptrs 的通用基类/助手类,但我在让它在派生类中工作时遇到了问题。
#include <memory>
template<typename T>
struct SPAlloc {
virtual ~SPAlloc() {}
template<typename ...Args>
static std::shared_ptr<T>
Alloc(Args&&... params) {
return std::make_shared<T>(std::forward<Args>(params)...);
}
template<class U, typename ...Args>
static std::shared_ptr<U>
Alloc(Args&&... params) {
return std::make_shared<U>(std::forward<Args>(params)...);
}
};
class Base : public SPAlloc<Base> {
public:
virtual ~Base() {};
};
class Child : public Base {
public:
virtual ~Child() {};
};
typedef std::shared_ptr<Base> pBase;
typedef std::shared_ptr<Child> pChild;
int main() {
pBase base = Base::Alloc();
pChild child = Child::Alloc();
}
我知道模板中的class Base : public SPAlloc<Base>
意思是,这就是我创建第二个 Alloc 的原因。第二个 alloc 需要被称为 like 。T
Base
Child::Alloc<Child>()
有没有办法写这个Alloc
,以便编译器可以推断出我调用 Alloc 的类?