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