我有一个指针类型Ptr.它可能是T *,unique_ptr,shared_ptr或其他.如何在编译时
获取其尖头类型?我尝试以下但失败了
template<class Ptr>
void f()
{
typedef decltype(*Ptr()) T; // give unexpected results
}
以下删除的答案非常有效.
typedef typename std::remove_reference<decltype(*std::declval<Ptr>())>::type T;
当我看到其他人已经发布了这个答案时,我正在写这个答案,所以我放弃了.但后来其他答案消失了,所以就在这里.如果原件重新出现,我会
删除它.
如果Ptr是(例如)int *,则decltype(* Ptr())计算为int&而不是int,这可能是你的错误的原因(无论它是什么).尝试:
的std :: remove_reference< decltype(* PTR())> ::类型
或者,如果可能Ptr可能没有默认构造函数:
的std :: remove_reference< decltype(*的std :: declval< PTR>())> ::类型