1. 首页
  2. 数据库
  3. 其它
  4. C++11模板元编程 std::enable_if示例详解

C++11模板元编程 std::enable_if示例详解

上传者: 2021-02-01 06:35:02上传 PDF文件 37.7KB 热度 9次
C++11中引入了std::enable_if函数,函数原型如下: template< bool xss=removed> struct enable_if; 可能的函数实现: template struct enable_if {}; template struct enable_if { typedef T type; }; 由上可知,只有当第一个模板参数为true时,enable_if会包含一个type=T的公有成员,否则没有该公有成员。 头文件: #include <type_t
用户评论