Java StringBuilder trimToSize()方法与示例
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 objectStringBuilder st_b = new StringBuilder("Java ");// By using append() method is to append the given string to // st_b objectst_b.append("World");// By using trimToSize() method is to trim the st_b object// according to particular stringBuilder object sizest_b.trimToSize();// Display st_bSystem.out.println("st_b.trimToSize() = " + st_b);} }Output
輸出量
st_b.trimToSize() = Java World翻譯自: https://www.includehelp.com/java/stringbuilder-trimtosize-method-with-example.aspx
總結
以上是生活随笔為你收集整理的Java StringBuilder trimToSize()方法与示例的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Java File类boolean cr
- 下一篇: c语言 宏定义 去除宏定义_如何检查是否