我有一个在 MinGW 和 Visual C++ 2008 Express 中编译的简单程序,并且都给出了大于 88200 的输出文件。当我设置 s = 0 时,两个程序都按预期工作。我究竟做错了什么?
#include <fstream>
using namespace std;
int main(int argc, char *argv[])
{
int i;
short s;
fstream f;
f.open("test.raw", ios_base::out);
for(i = 0; i < 44100; i++)
{
s = i & 0xFFFF; // PROBLEM?
f.write(reinterpret_cast<const char *>(&s), sizeof(s));
}
f.close();
return 0;
}