我想知道是否可以在下面的示例中使用折叠表达式(以及如何编写它)。
#include <iostream>
#include <type_traits>
#include <typeinfo>
#include <sstream>
#include <iomanip>
template<int width>
std::string padFormat()
{
return "";
}
template<int width, typename T>
std::string padFormat(const T& t)
{
std::ostringstream oss;
oss << std::setw(width) << t;
return oss.str();
}
template<int width, typename T, typename ... Types>
std::string padFormat(const T& first, Types ... rest)
{
return (padFormat<width>(first + ... + rest)); //Fold expr here !!!
}
int main()
{
std::cout << padFormat<8>("one", 2, 3.0) << std::endl;
std::cout << padFormat<4>('a', "BBB", 9u, -8) << std::endl;
return 0;
}
我试过到目前为止,但我没有弄清楚!
谢谢你。