我在第 18 行和第 23 行遇到了折叠表达式的代码工作问题
我想让它有这样的结果
"1 2 3 4"
"9 0 -1 -200"
"abc"
" world"
"Empty List"
好像列表是空的,你会打印"Empty List"
,如果不是,如果类型是char
它不会打印空间,如果类型不是char
,它会打印中间的空间。
我尝试使用((std::cout<<" " << list), ...);
,但它会打印我不想要的额外空间,因此我将其存储在临时字符串中,然后将其删除。
任何人都可以帮忙吗?
#include <iostream>
#include <string>
template<int ... intlist>
using IntList = typename Facility<int>::List<intlist...>;
template<char ... charlist>
using CharList = typename Facility<char>::List<charlist...>;
template<short ... shortlist>
using ShortList = typename Facility<short>::List<shortlist...>;
template<unsigned short ... shortlist>
using UnsignedShortList = typename Facility<unsigned short>::List<shortlist...>;
template<long ... list>
using LongList = typename Facility<long>::List<list...>;
template<typename T , typename Comp=std::less<T>>
struct Facility
{
template<T ... list>
struct List
{
static void print()
{
std::string str;
str ="\"";
if(sizeof...(list)== 0)
{
str+="Empty List";
}
else if (std::is_same<T, char>::value)
{
str+=(... + list);
//((std::cout<< list), ...);
}
else
{
str+=((" " + list), ...);
//((std::cout<<" " << list), ...);
str.erase(0,1);
}
str+="\"";
std::cout << str << std::endl;
}
};
};
int main()
{
using List1 = IntList<1,2,3,4>;
using List2 = IntList<9, 0, -1, -200>;
List1::print();
List2::print();
using String1 = CharList<'a', 'b', 'c'>;
using String2 = CharList<' ', 'w', 'o', 'r', 'l', 'd' >;
using EmptyString = CharList<>;
String1::print();
String2::print();
EmptyString::print();
}