当前位置:  开发笔记 > 编程语言 > 正文

模板递归不会停止

如何解决《模板递归不会停止》经验,为你挑选了1个好方法。

我想创建模板递归,让我通过使用make_sequence <4>创建序列<0,1,2,3,4>,但似乎递归不会在特化时停止,只是继续运行直到stackoverfolw.

#include 
#include 

template 
struct sequence {};




template
struct make_sequenceAppend{
        using type = typename make_sequenceAppend::type;
};

template
struct make_sequenceAppend<0ul, Indices...>{
        using type =  typename sequence< Indices...>::type;

};

template 
struct make_sequence{

        using type = typename make_sequenceAppend::type;

};


int main()
{
  make_sequence<4>();
  return 0;
}

Sam Varshavc.. 5

你的专业化声明是错误的.它应该是:

template
struct make_sequenceAppend<0ul, Indices...>{

另外,sequence< Indices...>::type不存在.您的完整专业应该是:

template
struct make_sequenceAppend<0ul, Indices...>{
        using type =  sequence< Indices...>;

};

你的分号中也有一个缺失的分号main(),但这不是重点......



1> Sam Varshavc..:

你的专业化声明是错误的.它应该是:

template
struct make_sequenceAppend<0ul, Indices...>{

另外,sequence< Indices...>::type不存在.您的完整专业应该是:

template
struct make_sequenceAppend<0ul, Indices...>{
        using type =  sequence< Indices...>;

};

你的分号中也有一个缺失的分号main(),但这不是重点......

推荐阅读
爱唱歌的郭少文_
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有