标签: c++ syntax stl
在此代码中。
vector<int> iVect{std::istream_iterator<int>(cin),std::istream_iterator()};
为什么我必须使用统一初始化语法,而不是使用常规语法?