有没有办法将引用作为参数传递给模板typename参数?我的意思是说,而不是通过int来传递对int的引用。
template <typename T>
struct Foo
{
Foo(T arg) : ptr(arg) {}
T ptr;
};
int main()
{
int* a = new int(6);
Foo<decltype(a)> foo1(a); // ptr is a copy of a pointer
Foo<decltype(&a)> foo1(&a); // ptr seems to be a pointer to a pointer
}
我知道我可以通过在类中使其成为T&来使'ptr'成员成为对指针的引用,但是我想知道是否可以通过传递给模板参数的参数来实现。
decltype
,因为从字面意义Foo<int*&>