StringBuilder類trimToSize()方法 (StringBuilder Class trimToSize() method)
trimToSize() method is available in java.lang package.
trimToSize()方法在java.lang包中可用。
trimToSize() method is used to minimize storage used for the characters (i.e. if the initial buffer size is greater than required to hold its current set of characters so it may be resized depend on the requirement to utilize memory space effectively).
trimToSize()方法用于最小化用于字符的存儲(即,如果初始緩沖區大小大于保存其當前字符集所需的大小,則可以根據有效利用內存空間的要求來調整大小)。
trimToSize() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
trimToSize()方法是一種非靜態方法,只能通過類對象訪問,如果嘗試使用類名稱訪問該方法,則會收到錯誤消息。
trimToSize() method does not throw an exception at the time of trimming size.
trimToSize()方法在修剪大小時不會引發異常。
Syntax:
句法:
public void trimToSize();
Parameter(s):
參數:
It does not accept any parameter.
它不接受任何參數。
Return value:
返回值:
The return type of this method is void, it returns nothing.
此方法的返回類型為void ,不返回任何內容。
Example:
例:
// Java program to demonstrate the example
// of void trimToSize() method of StringBuilder
public class TrimToSize {
public static void main(String[] args) {
// Creating an StringBuilder object
StringBuilder st_b = new StringBuilder("Java ");
// By using append() method is to append the given string to
// st_b object
st_b.append("World");
// By using trimToSize() method is to trim the st_b object
// according to particular stringBuilder object size
st_b.trimToSize();
// Display st_b
System.out.println("st_b.trimToSize() = " + st_b);
}
}
Output
輸出量
st_b.trimToSize() = Java World
翻譯自: https://www.includehelp.com/java/stringbuilder-trimtosize-method-with-example.aspx