1

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

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

我试过到目前为止,但我没有弄清楚!

谢谢你。

4

1 回答 1

3

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

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

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

科利鲁链接

于 2019-02-06T22:54:43.743 回答