请考虑以下代码段:
#include <iostream>
template <typename... types> void writeall(const types & ... items)
{
(std :: cout << ... << items);
}
template <typename... types> void readall(types & ... items)
{
(std :: cin >> ... >> items);
}
int main()
{
writeall(1, 2, 3, 4);
std :: cout << std :: endl;
int a, b, c, d;
readall(a, b, c, d);
}
在writeall
中,我使用折叠表达式将std :: cout
输入参数包。一切都很完美,我将1234
打印到屏幕上。
在readall
中,我完全一样,希望从std :: cin
读取参数包。但是,我得到了
error: expected ')'
(std :: cin >> ... >> items);
我做错了什么?人们会期望事情完全相同,我只是用运算符<<
替换了运算符>>
。