作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以这段代码为例,确定一个类型列表的长度:
template <class... Types>
class type_list {};
template <class TypeList>
struct type_list_length; // <---
template <template <class...> class type_list, class... Types>
struct type_list_length<TypeList<Types...>>
{
static constexpr std::size_t value = sizeof...(Types);
};
为什么我们需要标记声明?我尝试在几个编译器中编译没有它的代码,但总是出错。
最佳答案
But why do we need the specialization in the first place?
因为您使用 class
如下
std::cout << type_list_length<type_list<int, long, long long>>::value;
// ...........................^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ <- template argument
或者还有
std::cout << type_list_length<std::tuple<int, long, long long>>::value;
// ...........................^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ <- template argumen
或以类似的方式。
观察模板参数:在这两种情况下都是类型; type_list<int, long, long long>
在第一种情况下,std::tuple<int, long, long long>
.
所以你不能声明type_list_length
作为接收模板模板类型
template <template <class...> class type_list, class... Types>
struct type_list_length // <--- doesn't work
{
static constexpr std::size_t value = sizeof...(Types);
};
因为你应该调用它来传递一个模板模板参数,后跟一个模板的可变列表;我的意思是......你应该按如下方式使用它
std::cout << type_list_length<type_list, int, long, long long>::value;
std::cout << type_list_length<std::tuple, int, long, long long>::value;
但是,这样一来,您就失去了类的力量:提取并计算类型参数的模板参数。
所以你需要先声明type_list_length
作为接收类型
template <typename> // no template parameter name needed here (not used)
struct type_list_length;
然后在接收到的类型是带参数的模板模板的情况下声明并定义一个特化
template <template <typename...> class type_list, typename... Types>
struct type_list_length<TypeList<Types...>>
{ // ...................^^^^^^^^^^^^^^^^^^ the parameter is a type
static constexpr std::size_t value = sizeof...(Types);
};
关于c++ - 为什么我们需要模板模板参数的模板特化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56875637/
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 4 年前。
正如您在 this travis.yml 中看到的那样文件,我的代码依赖于一些第三方库,我在构建项目之前将它们安装在远程系统上。 Travis 每次推送提交时都会下载并构建这些库,这可以避免吗?我的意
我是一名优秀的程序员,十分优秀!