當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java String length()用法及代碼示例


Java String 類 length() 方法查找字符串的長度。 Java 字符串的長度與字符串的 Unicode 代碼單元相同。

簽名

字符串 length() 方法的簽名如下:

public int length()

指定者

字符序列接口

返回

字符長度。換句話說,字符串中存在的字符總數。

內部實現

public int length() {
        return value.length;
    }

String 類在內部使用 char[] 數組來存儲字符。數組的長度變量用於查找數組中存在的元素總數。由於 Java String 類在內部使用這個 char[] 數組;因此,長度變量不能暴露於外界。因此,Java 開發人員創建了 length() 方法,公開了長度變量的值。還可以將 length() 方法視為 getter() 方法,它向用戶提供類字段的值。內部實現清楚地描述了 length() 方法返回長度變量的值。

Java String length() 方法示例

文件名:LengthExample.java

public class LengthExample{
public static void main(String args[]){
String s1="javatpoint";
String s2="python";
System.out.println("string length is:"+s1.length());//10 is the length of javatpoint string
System.out.println("string length is:"+s2.length());//6 is the length of python string
}}

輸出:

string length is:10
string length is:6

Java 字符串 length() 方法示例 2

由於 length() 方法給出了字符串中存在的字符總數;因此,還可以檢查給定的字符串是否為空。

文件名:LengthExample2.java

public class LengthExample2 {
	public static void main(String[] args) {
		String str = "Javatpoint";
		if(str.length()>0) {
			System.out.println("String is not empty and length is:"+str.length());
		}
		str = "";
		if(str.length()==0) {
			System.out.println("String is empty now:"+str.length());
		}
	}
}

輸出:

String is not empty and length is:10
String is empty now:0

Java 字符串 length() 方法示例 3

length() 方法也用於反轉字符串。

文件名:LengthExample3.java

class LengthExample3 
{
// main method
public static void main(String argvs[])
{
String str = "Welcome To JavaTpoint";
int size = str.length();

System.out.println("Reverse of the string:" + "'" + str + "'" + " is");

for(int i = 0; i < size; i++)
{
// printing in reverse order
System.out.print(str.charAt(str.length() - i - 1));
}

}
}

輸出:

Reverse of the string:'Welcome To JavaTpoint' is
tniopTavaJ oT emocleW

Java 字符串 length() 方法示例 4

length() 方法也可用於僅查找字符串中存在的空格。觀察以下示例。

文件名:LengthExample4.java

public class LengthExample4
{
// main method
public static void main(String argvs[])
{
String str = " Welcome To JavaTpoint ";
int sizeWithWhiteSpaces = str.length();

System.out.println("In the string:" + "'" + str + "'");

str = str.replace(" ", "");
int sizeWithoutWhiteSpaces = str.length();

// calculating the white spaces
int noOfWhieSpaces = sizeWithWhiteSpaces - sizeWithoutWhiteSpaces;

System.out.print("Total number of whitespaces present are:" + noOfWhieSpaces);
}
}

輸出:

In the string:' Welcome To JavaTpoint '
Total number of whitespaces present are:4




相關用法


注:本文由純淨天空篩選整理自 Java String length()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。