gpt4 book ai didi

java - 字符串缓冲区声明不足

转载 作者:行者123 更新时间:2023-11-30 06:13:33 25 4
gpt4 key购买 nike

我使用工具来检查编码风格我得到了很多建议:

StringBuffer constructor is initialized with size 16, but has at least 35 characters appended.

这是我的一些代码:

final StringBuffer Contents = new StringBuffer();

为什么会这样?
它是如何计算 35 个字符的?
如何编辑 StringBuffer 的大小?
或者我应该用什么方法来解决这个问题??

最佳答案

StringBuffer 创建后更改它的容量比使用预期的容量创建它的成本更高。

使用这个构造函数来移除这个警告:

    /**
* Constructs a string buffer with no characters in it and
* the specified initial capacity.
*
* @param capacity the initial capacity.
* @exception NegativeArraySizeException if the <code>capacity</code>
* argument is less than <code>0</code>.
*/
public StringBuffer(int capacity) {
super(capacity);
}

关于java - 字符串缓冲区声明不足,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31720833/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com