java.lang.StringBuffer.ensureCapacity() 方法確保了容量至少等於指定的最小值。如果當前容量小於引數,那麼一個新的內部陣列分配較大的容量。
如果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