如何查看类型推断2
万能引用类型
从上一章如何查看类型推断中,我们发现经过模板的类型推导,T的类型是不完整的,我们想得到完全的类型
template
void myfunc(T&& tmprv) {
cout << "-----------------begin------------------" << endl;
using boost::typeindex::type_id_with_cvr;
cout << "T=" << type_id_with_cvr
如何查看类型推断2最先出现在Python成神之路。
共有 0 条评论