我试图创建一个允许调用者指定自己格式良好的分配方法的模板,但是我在传递可变参数模板参数时遇到了问题。
如果我没有通过任何论据,一切都按预期进行;但是,如果我传递一个或多个参数,我会得到一个编译错误"函数调用的参数太多"。
我做错了什么?
#include <cstdio>
#include <memory>
template <typename T, typename... Args>
using allocator = std::unique_ptr<T>(Args...);
template <typename T, allocator<T> A, typename... Args>
std::unique_ptr<T> get(Args... args) {
return A(args...);
}
int main() {
auto up1 = get<int, std::make_unique<int>>(); // Works
auto up2 = get<int, std::make_unique<int>>(1); // Too many arguments
// expected 0, have 1
printf("%d\n", *up1);
printf("%d\n", *up2);
}
答案 0 :(得分:0)
你可以改为允许和推断一个可能有状态的仿函数的类型 A.还有一些大括号,但更难弄错:
#include <cstdio>
#include <memory>
template <typename T>
struct allocator{
template<typename... Args>
auto operator()(Args&&... args) const {
return std::make_unique<T>(std::forward<Args>(args)...);
}
};
template <typename T, typename A = allocator<T>>
auto get(A a=A{}) {
return [a](auto... args){
return a(args...);
};
};
int main() {
auto up0 = get<int>()();
auto up1 = get<int>()(1);
auto up0b = get<int>(allocator<int>())();
auto up1b = get<int>(allocator<int>())(1);
auto up0c = get<int>([](auto ... args){ return std::make_unique<int>(args...); })();
auto up1c = get<int>([](auto ... args){ return std::make_unique<int>(args...); })(1);
printf("%d\n", *up0);
printf("%d\n", *up0b);
printf("%d\n", *up0c);
printf("%d\n", *up1);
printf("%d\n", *up1b);
printf("%d\n", *up1c);
}
另请注意,我也在make_unique
中使用allocator
,但您可以创建一个接受指针构建unique_ptr
的版本。