java.lang.StringBuffer.ensureCapacity()方法实例
java.lang.StringBuffer.ensureCapacity() 方法确保了容量至少等于指定的最小值。如果当前容量小于参数,那么一个新的内部数组分配较大的容量。
- minimumCapacity参数。
- 旧容量的两倍,再加上2。
如果minimumCapacity参数为非正数,则此方法不执行任何操作并返回。
声明
以下是java.lang.StringBuffer.ensureCapacity()方法的声明
public void ensureCapacity(int minimumCapacity)
参数
-
minimumCapacity -- 这是最低所需量。
返回值
此方法不返回任何值。
异常
-
NA
例子
下面的例子显示java.lang.StringBuffer.ensureCapacity()方法的使用。
package com.yiibai; import java.lang.*; public class StringBufferDemo { public static void main(String[] args) { StringBuffer buff1 = new StringBuffer("tuts point"); System.out.println("buffer1 = " + buff1); // returns the current capacity of the string buffer 1 System.out.println("Old Capacity = " + buff1.capacity()); /* increases the capacity, as needed, to the specified amount in the given string buffer object */ // returns twice the capacity plus 2 buff1.ensureCapacity(28); System.out.println("New Capacity = " + buff1.capacity()); StringBuffer buff2 = new StringBuffer("compile online"); System.out.println("buffer2 = " + buff2); // returns the current capacity of string buffer 2 System.out.println("Old Capacity = " + buff2.capacity()); /* returns the old capacity as the capacity ensured is less than the old capacity */ buff2.ensureCapacity(29); System.out.println("New Capacity = " + buff2.capacity()); } }
让我们来编译和运行上面的程序,这将产生以下结果:
buffer1 = tuts point Old Capacity = 26 New Capacity = 54 buffer2 = compile online Old Capacity = 30 New Capacity = 30