Java StringBuilder length()方法
java.lang.StringBuilder.length() 方法返回长度(字符数)。
1 语法
public int length()
2 参数
无
3 返回值
此方法返回当前由该对象表示的字符序列的长度。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Enum compareTo()方法
*/
import java.lang.*;
public class StringBuilderDemo {
public static void main(String[] args) {
StringBuilder str = new StringBuilder("admin");
// prints the length of StringBuilder
System.out.println("length = " + str.length());
str = new StringBuilder("");
// prints the length of empty StringBuider
System.out.println("length = " + str.length());
}
}
输出结果为:
length = 5
length = 0
热门文章
优秀文章