程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> 詳細介紹JAVA中的字符串

詳細介紹JAVA中的字符串

編輯:關於JAVA

Java語言中,把字符串作為對象來處理,類String和StringBuffer都可以用來表示一個字符串。(類名都是大寫字母打頭)

1.字符串常量

字符串常量是用雙引號括住的一串字符。

"Hello World!"

2.String表示字符串常量

用String表示字符串:

  1. String( char chars[ ] );
  2. String( char chars[ ], int startIndex, int numChars );
  3. String( byte ascii[ ], int hiByte );
  4. String( byte ascii[ ], int hiByte, int startIndex, int numChars );

String使用示例:

  1. String s=new String() ; 生成一個空串

下面用不同方法生成字符串"abc":

  1. char chars1[]={''a'',''b'',''c''};
  2. char chars2[]={''a'',''b'',''c'',''d'',''e''};
  3. String s1=new String(chars1);
  4. String s2=new String(chars2,0,3);
  5. byte ascii1[]={97,98,99};
  6. byte ascii2[]={97,98,99,100,101};
  7. String s3=new String(ascii1,0);
  8. String s4=new String(ascii2,0,0,3);

3.用StringBuffer表示字符串

  1. StringBuffer( ); /*分配16個字符的緩沖區*/
  2. StringBuffer( int len ); /*分配len個字符的緩沖區*/
  3. StringBuffer( String s ); /*除了按照s的大小分配空間外,再分配16個字符的緩沖區*/

4、訪問字符串

(1)類String中提供了length( )、charAt( )、indexOf( )、lastIndexOf( )、getChars( )、getBytes( )、toCharArray( )等方法。

  1. public int length() 此方法返回字符串的字符個數
  2. public char charAt(int index) 此方法返回字符串中index位置上的字符,其中index 值的 范圍是0~length-1
  3. public int indexOf(int ch)
  4. public lastIndexOf(in ch)

返回字符ch在字符串中出現的第一個和最後一個的位置

  1. public int indexOf(String str)
  2. public int lastIndexOf(String str)

返回子串str中第一個字符在字符串中出現的第一個和最後一個的位置

  1. public int indexOf(int ch,int fromIndex)
  2. public lastIndexOf(in ch ,int fromIndex)

返回字符ch在字符串中位置fromIndex以後出現的第一個和最後一個的位置

  1. public int indexOf(String str,int fromIndex)
  2. public int lastIndexOf(String str,int fromIndex)

返回子串str中的第一個字符在字符串中位置fromIndex後出現的第一個和最後一個的位置。

  1. public void getchars(int srcbegin,int end ,char buf[],int dstbegin)

srcbegin 為要提取的第一個字符在源串中的位置, end為要提取的最後一個字符在源串中的位置,字符數組buf[]存放目的字符串,dstbegin 為提取的字符串在目的串中的起始位置。

  1. public void getBytes(int srcBegin, int srcEnd,byte[] dst, int dstBegin)

參數及用法同上,只是串中的字符均用8位表示。

(2).類StringBuffer提供了 length( )、charAt( )、getChars( )、capacity()等方法。

方法capacity()用來得到字符串緩沖區的容量,它與方法length()所返回的值通常是不同的。

5、修改字符串

修改字符串的目的是為了得到新的字符串,類String和類StringBuffer都提供了相應的方法。有關各個方法的使用,參考Java 2 API。

(1)String類提供的方法:

  • concat( )
  • replace( )
  • substring( )
  • toLowerCase( )
  • toUpperCase( )
  1. public String contat(String str);

用來將當前字符串對象與給定字符串str連接起來。

  1. public String replace(char oldChar,char newChar);

用來把串中出現的所有特定字符替換成指定字符以生成新串。

  1. public String substring(int beginIndex);
  2. public String substring(int beginIndex,int endIndex);

用來得到字符串中指定范圍內的子串。

  1. public String toLowerCase();

把串中所有的字符變成小寫。

  1. public String toUpperCase();

把串中所有的字符變成大寫。

(2)StringBuffer類提供的方法:

  • append( )
  • insert( )
  • setCharAt( )

如果操作後的字符超出已分配的緩沖區,則系統會自動為它分配額外的空間。

  1. public synchronized StringBuffer append(String str);

用來在已有字符串末尾添加一個字符串str。

  1. public synchronized StringBuffer insert(int offset, String str);

用來在字符串的索引offset位置處插入字符串str。

  1. public synchronized void setCharAt(int index,char ch);

用來設置指定索引index位置的字符值。

注意:String中對字符串的操作不是對源操作串對象本身進行的,而是對新生成的一個源操作串對象的拷貝進行的,其操作的結果不影響源串。

相反,StringBuffer中對字符串的連接操作是對源串本身進行的,操作之後源串的值發生了變化,變成連接後的串。

6、其它操作

(1)字符串的比較

String中提供的方法:equals( )和equalsIgnoreCase( )

它們與運算符''= =''實現的比較是不同的。運算符''= =''比較兩個對象是否引用同一個實例,而equals( )和equalsIgnoreCase( )則比較兩個字符串中對應的每個字符值是否相同。

(2)字符串的轉化

Java.lang.Object中提供了方法toString( )把對象轉化為字符串。

(3)字符串"+"操作

運算符''+''可用來實現字符串的連接:

  1. String s = "He is "+age+" years old.";

其他類型的數據與字符串進行"+"運算時,將自動轉換成字符串。具體過程如下:

  1. String s=new StringBuffer("he is").append(age).append("years old").toString();

注意:除了對運算符"+"進行了重載外,Java不支持其它運算符的重載

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved