Java 字符串創(chuàng)建/長度

2018-01-23 16:36 更新

Java數(shù)據(jù)類型教程 - Java字符串創(chuàng)建/長度


創(chuàng)建字符串對象

String類包含許多可用于創(chuàng)建String對象的構(gòu)造函數(shù)。

默認構(gòu)造函數(shù)創(chuàng)建一個以空字符串作為其內(nèi)容的String對象。

例如,以下語句創(chuàng)建一個空的String對象,并將其引用分配給emptyStr變量:

String  emptyStr = new String();

String類包含一個構(gòu)造函數(shù),它接受另一個String對象作為參數(shù)。

String str1 = new String();
String str2 = new String(str1); // Passing a  String as  an  argument

現(xiàn)在str1代表與str2相同的字符序列。在這一點上,str1和str2都代表一個空字符串。我們也可以傳遞一個字符串字面量到這個構(gòu)造函數(shù)。

String str3 = new String("");
String str4 = new String("Have fun!");

在執(zhí)行這兩個語句之后,str3將引用一個String對象,它有一個空字符串作為其內(nèi)容,而str4將引用一個String對象,它有“Have fun!作為其內(nèi)容。


字符串的長度

String類包含一個length()方法,該方法返回String對象中的字符數(shù)。

方法length()的返回類型是int??兆址拈L度為零。

public class Main {
  public static void main(String[] args) {
    String str1 = new String();
    String str2 = new String("Hello");

    // Get the length of str1 and str2 
    int len1 = str1.length();
    int len2 = str2.length();

    // Display the length of str1 and str2
    System.out.println("Length of  \"" + str1 + "\" = " + len1);
    System.out.println("Length of  \"" + str2 + "\" = " + len2);
  }
}

上面的代碼生成以下結(jié)果。



以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號