我可以在此示例中使用折叠表达式吗

Can I use a Fold Expression in this example

我想知道是否可以在下面的示例中使用折叠表达式(以及如何编写)。

#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;
}

到目前为止我都试过了,但我没弄明白!!

谢谢。

我猜您想对每个参数调用 padFormat 然后 连接。因此,你必须写

return (padFormat<width>(first) + ... + padFormat<width>(rest));

(需要额外的括号;折叠表达式必须用括号括起来才有效。)

Coliru link