c++ type traits
摘要:
// 移除引用获取原始类型 template <typename _Tp> struct remove_reference { typedef _Tp type; }; template <typename _Tp> struct remove_reference<_Tp &> { typedef 阅读全文
posted @ 2024-09-12 21:13 kehuadong 阅读(4) 评论(0) 推荐(0) 编辑