我正在寻找一种在std::vector
使用std::ifstream
.
我尝试了以下方法:
std::vector<int> indices;
indices.reserve(index_count);
std::copy(std::istream_iterator<int>(ifstream), std::istream_iterator<int>(), std::back_inserter(indices));
但没有添加任何条目。我读过这个方法可能只适用于字符串?
无论如何,任何建议将不胜感激。:)