3

我是 android 新手,在阅读书籍时无法理解循环中新分配的原因。在循环之前完成一次还不够吗?

        FileInputStream fIn =
                openFileInput("textfile.txt");
        InputStreamReader isr = new
                InputStreamReader(fIn);
        char[] inputBuffer = new char[READ_BLOCK_SIZE];
        String s = "";
        int charRead;
        while ((charRead = isr.read(inputBuffer))>0)
        {
            //---convert the chars to a String---
            String readString =
            String.copyValueOf(inputBuffer, 0,
            charRead);
            s += readString;
            inputBuffer = new char[READ_BLOCK_SIZE];
        }
4

2 回答 2

3

String.copyValueOfjavadoc :

  /**
 * Creates a new string containing the specified characters in the character
 * array. Modifying the character array after creating the string has no
 * effect on the string.
 *
 * @param start
 *            the starting offset in the character array.
 * @param length
 *            the number of characters to use.

所以没有理由在循环中创建一个新的 char[]。

于 2013-01-08T16:21:55.960 回答
1

只分配一次缓冲区就足够了,因此您可以删除循环内的分配,它应该可以正常工作。

还有一件事……这段代码的性能很差,因为它在循环中使用了字符串连接。您应该使用StringBuilder.append()而不是s += readString.

PS 我建议你选择另一本书,因为这本书在如此简单的代码中错误太多。

于 2013-01-08T16:43:08.517 回答