開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
MSVS 2010
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
STL
問題(Question):
下面程式碼總是沒有完整的把檔案讀完印出來
餵入的資料(Input):
一個 (檔案大小%4==0) 的二進制檔案, 其中含有 0xFFFFFFFF 在 (位置%4==0) 的地方
預期的正確結果(Expected Output):
將檔案內容完整印出
錯誤結果(Wrong Output):
程式碼(Code):(請善用置底文網頁, 記得排版)
std::basic_ifstream<unsigned int> file ("1.bin", std::ios::binary);
std::for_each (std::istreambuf_iterator<unsigned int> (file),
std::istreambuf_iterator<unsigned int>(),
[] (const unsigned int &value) {
std::cout << "0x" << std::setw (8) << std::setfill ('0') << std::hex
<< value << std::endl;
});
補充說明(Supplement):
看起來只要讀到和 std::char_traits<unsigned int>().eof() 相同的值
0xffffffff
for_each 就會提前離開, 請問如何如何修正?