如何将以下Java代码转换为C++代码?

 FileInputStream fi = new FileInputStream(f);
 byte[] b = new byte[188];
 int i = 0;
 while ((i = fi.read(b)) > -1)// This is the line that raises my question.
 {
 // Code Block
 }

我正在尝试运行以下代码行,但结果是错误。
 ifstream InputStream;
 unsigned char *byte = new unsigned char[188];
 while(InputStream.get(byte) > -1)
 {
 // Code Block
 }

最佳答案

您可以使用 std::ifstream ,并使用 get( )一次读取单个字符,或者使用提取运算符 >> 读取输入流中纯文本形式的任何给定类型,或者使用 read() 读取连续的字节数。

请注意,与java read() 相反,c++读取返回流。如果您想知道读取的字节数,则必须使用 gcount() ,或者使用 readsome()

因此,可能的解决方案可能是:

ifstream ifs (f);  // assuming f is a filename
char b[188];
int i = 0;
while (ifs.read(b, sizeof(b))) // loop until there's nothing left to read
{
   i = ifs.gcount();   // number of bytes read
   // Code Block
}

10-08 17:46