作者littleshan (我要加入劍道社!)
看板C_and_CPP
標題Re: [問題] 關於sizeof
時間Mon May 4 13:41:31 2009
※ 引述《herman602 (奸商)》之銘言:
: --
:
※ 發信站: 批踢踢實業坊(ptt.cc)
: ◆ From: 123.195.0.181
: 推 legnaleurc:ifstream的物件大小和檔案大小無關吧 05/04 13:31
: → herman602:那如果我要測量檔案大小要怎麼做 感謝@@ 05/04 13:33
ifstream fin("file.txt");
fin.seekg(0, ios::end);
cout << "file size is: " << fin.tellg() << " bytes." << endl;
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 219.87.151.2
1F:推 herman602:感謝!! 05/04 13:42