Java String length()方法
描述:
此方法返回当前字符串的长度。长度等于16位的Unicode字符的字符串中的数字。
语法
此方法定义的语法如下:
public int length()
参数
这里是参数的细节:
-
NA
返回值:
-
此方法返回该对象表示的字符序列的长度。
例子:
import java.io.*; public class Test{ public static void main(String args[]){ String Str1 = new String("Welcome to Tutorialspoint.com"); String Str2 = new String("Tutorials" ); System.out.print("String Length :" ); System.out.println(Str1.length()); System.out.print("String Length :" ); System.out.println(Str2.length()); } }
这将产生以下结果:
String Length :29 String Length :9