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


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


Java 中的字符串是 char 數組內部支持的對象。由於數組是不可變的,而字符串也是一種保存字符的特殊數組,因此字符串也是不可變的。

Java的字符串類包含許多對字符串執行各種操作的方法,例如compare()、concat()、equals()、split()、length()、replace()、compareTo()、substring()等。方法,我們將重點關注 Java String 類length()方法。

如何在 Java 中查找字符串的長度

字符串長度或大小表示其中存在的字符總數。在String中,所有元素都以字符的形式存儲,即“1”、“”、“_”等都被視為字符。

例如:

String:  "Geeks For Geeks" 
size: 15

字符串。length()方法

Java String length()方法是適用於字符串對象的方法。 length() 方法返回字符串中存在的字符數。 length() 方法適用於字符串對象,但不適用於數組。

length() 方法也可用於 StringBuilder 和 StringBuffer 類。 length() 方法是公共成員方法。 String 類、StringBuilder 類和StringBuffer 類的任何對象都可以使用 ( . ) 點運算符訪問 length() 方法。

方法簽名

length()方法的方法簽名如下:

public int length()

返回類型

  • length()方法的返回類型是國際。

Java String length()方法示例

以下示例演示了 Java String length() 方法的使用。

1. 使用length()方法查找String的大小

Java 程序演示如何使用 length() 方法獲取 Java 中字符串的長度

Java


// Java program to illustrate
// how to get the length of String
// in Java using length() method
// Driver Class
public class Test {
    // main function
    public static void main(String[] args)
    {
        // Here str is a string object
        String str = "GeeksforGeeks";
        System.out.println("The size of "
                           + "the String is "
                           + str.length());
    }
}
輸出
The size of the String is 13

2. 比較兩個String的大小

Java 程序說明如何使用length() 方法檢查兩個字符串的長度是否相等。

Java


// Java program to illustrate how to check
// whether the length of two strings is
// equal or not using the length() method.
import java.io.*;
// Driver Class
class GFG {
    // main function
    public static void main(String[] args)
    {
        String s1 = "abc";
        String s2 = "xyz";
        // storing the length of both the
        // strings in int variables
        int len1 = s1.length();
        int len2 = s2.length();
        // checking whether the length of
        // the strings is equal or not
        if (len1 == len2) {
            System.out.println(
                "The length of both the strings are equal and is "
                + len1);
        }
        else {
            System.out.println(
                "The length of both the strings are not equal");
        }
    }
}
輸出
The length of both the strings are equal and is 3


相關用法


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