考虑以下代码段:
#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);
我究竟做错了什么?人们会期望事情完全一样,我只是用 operator 替换<<
了 operator >>
。