Java-String的常用方法總結:
一、String類
String類在java.lang包中,java使用String類創建一個字符串變量,字符串變量屬於對象。java把String類聲明的final類,不能繼承。String類對象創建後不能修改,由0或多個字符組成,包含在一對雙引號之間。
二、String類構造方法
1、public String()
無參構造方法,用來創建空字符串的String對象。
String str1=new String();
String str2=new String("asdf");
2、public String(String value)
String str2=new String("asdf");
3、public String(char[]value)
char[]value={'a','b','c','d'};
String str4=new String(value);
4、public String(char chars[],int startIndex,int numChars)
char[]value={'a','b','c','d'};
String str5=new String(value,1,2);
5、public String(byte[]values)
byte[]strb=new byte[]{65,66};
String str6=new String(strb);
三、String類常用方法
1、public char charAt(int index)
參數
index--字符的索引。
返回值
返回指定索引處的字符。
實例
public class Test{
public static void main(String args[]){
String s="www";
char result=s.charAt(1);
System.out.println(result);
}
}
複製
以上程序執行結果為:
w
2、public boolean equals(Object anObject)
參數
anObject--與字符串進行比較的對象。
返回值
如果給定對象與字符串相等,則返回true;否則返回false。
實例
public class Test{
public static void main(String args[]){
String Str1=new String("run");
String Str2=Str1;
String Str3=new String("run");
boolean retVal;
retVal=Str1.equals(Str2);
System.out.println("返回值="+retVal);
retVal=Str1.equals(Str3);
System.out.println("返回值="+retVal);
}
}
複製
以上程序執行結果為:
返回值=true
返回值=true
3、public boolean endsWith(String suffix)
endsWith()方法用於測試字符串是否以指定的後綴結束。
參數
suffix--指定的後綴。
返回值
如果參數表示的字符序列是此對象表示的字符序列的後綴,則返回true;否則返回false。注意,如果參數是空字符串,或者等於此String對象(用equals(Object)方法確定),則結果為true。
實例
public class Test{
public static void main(String args[]){
String Str=new String("runooo");
boolean retVal;
retVal=Str.endsWith("run");
System.out.println("返回值="+retVal);
retVal=Str.endsWith("ooo");
System.out.println("返回值="+retVal);
}
}
複製
以上程序執行結果為:
返回值=false
返回值=true
4、public boolean equalsIgnoreCase(String anotherString)
equalsIgnoreCase()方法用於將字符串與指定的對象比較,不考慮大小寫。
參數
anObject--與字符串進行比較的對象。
返回值
如果給定對象與字符串相等,則返回true;否則返回false。
public class Test{
public static void main(String args[]){
String Str1=new String("run");
String Str2=Str1;
String Str3=new String("run");
String Str4=new String("RUN");
boolean retVal;
retVal=Str1.equals(Str2);
System.out.println("返回值="+retVal);
retVal=Str3.equals(Str4);
System.out.println("返回值="+retVal);
retVal=Str1.equalsIgnoreCase(Str4);
System.out.println("返回值="+retVal);
}
}
複製
以上程序執行結果為:
返回值=true
返回值=false
返回值=true
5、public String replace(char oldChar,char newChar)
replace()方法通過用newChar字符替換字符串中出現的所有oldChar字符,並返回替換後的新字符串。
參數
oldChar--原字符。
newChar--新字符。
返回值
替換後生成的新字符串。
public class Test{
public static void main(String args[]){
String Str=new String("hello");
System.out.print("返回值:");
System.out.println(Str.replace('o','T'));
System.out.print("返回值:");
System.out.println(Str.replace('l','D'));
}
}
複製
以上程序執行結果為:
返回值:hellT
返回值:heDDo
6、public String toLowerCase()
toLowerCase()方法將字符串轉換為小寫。
參數
無
返回值
轉換為小寫的字符串。
public class Test{
public static void main(String args[]){
String Str=new String("WWW");
System.out.print("返回值:");
System.out.println(Str.toLowerCase());
}
}
複製
以上程序執行結果為:
返回值:www
原創聲明,本文系作者授權騰訊雲開發者社區發表,未經許可,不得轉載。
如有侵權,請聯繫 cloudcommunity@tencent.com 刪除。