热门标签
更多>
搜索结果
查询Tags标签: declval,共有 2条记录-
c++模板中的“无用”虚拟类
我看到这样的一段代码:// // Created by admin on 2022/8/6. //#ifndef COROUTINE_PRINTER_H #define COROUTINE_PRINTER_H#endif //COROUTINE_PRINTER_H#pragma once#include <iostream> #include <utility>namespace std {template <class T,class = de…
2022/8/7 1:23:59 人评论 次浏览 -
c++11 decay/decltype/declval
decay std::decay对类型进行退化处理。 a. T为数组U或数组U引用,则type为U*. b. T为函数时,则type为std::add_pointer::type. c. 其它类型则移除cv限定符(const和volatile),则type为std::remove_cv<std::remove_reference::type>::type. #include <type_trait…
2022/4/28 12:12:41 人评论 次浏览