1 扫盲-String类常用的方法
1.1:首先了解下String类的基本结构:
java.lang.Object 。。。。java.lang.String String类的直接父类是Object类。实现了如下Serializable, Comparable, CharSequence这三个接口
1.2:如何去定义一个字符串:
字符串是一个非常特殊的一个对象,使用双引号引来字面量就是字符串。A:String name="张三";
B:String name1=new String();
C:String name3=new String("张三");
"":字符串空也是一个对象。
1.3:String类中常用的方法
1:求字符串的长度:public int length();
String str1="aaaaa";
System.out.println(str1.length());//5
2:求字符串某一位置字符:返回字符串中指定位置的字符:public char charAt(int index);
注意:字符串中第一个字符索引是0,最后一个是length()-1
String str1=new String("abc");
System.out.println(str1.charAt(1)); //b
3:提取子串:用String类的subString方法可以提取字符串中的子串,该方法有两种参数:1):该方法从beginIndex位置起,从当前字符串中取出剩余的字符作为一个新的字符串返回:public String substring(int beginIndex)
String str1=new String("asdfzxc");
System.out.println(str1.substring(2));// dfzxc [beginIndex,~]
2):该方法从beginIndex位置起,从当前字符串中取出endIndex-1位置的字符作为一个新的字符串返回:public String subString(int beginIndex,int endIndex)
String str1=new String("asdfzxc");
System.out.println(str1.substring(2,4));//df [beginIndex,endIndex)
4:字符串比较 1) public int compareTo(String anotherString):该方法是对字符串内容按字典顺序进行大小比较,通过返回的整数值指明当前字符串与参数字符串的大小关系。若当前对象比参数大则返回正整数,反之返回负整数,相等返回0。
String str1=new String("asdfzxc");
String str2=new String("ASDFZXC");
System.out.println(str1.compareTo(str2));//32
2) public int compareToIgnore(String anotherString):与compareTo方法相似,
但忽略大小写。
String str1=new String("asdfzxc");
String str2=new String("ASDFZXC");
System.out.println(str1.compareToIgnoreCase(str2));//0
3) public boolean equals(Object anotherObject):比较当前字符串和参数字符串,在两个字符串相等的时候返回true,否则返回false。
String str1=new String("ASDFZXC");
String str2=new String("ASDFZXC");
System.out.println(str1.equals(str2));//true
String类中的equals方法重写了Object类中的equals方法:
public boolean equals(Object anObject) {
//如果当前的引用和传过来的引用相同的话,直接返回true
if (this == anObject) {
return true;
}
//instanceof:用来计算当前的对象是否是String类的实例或者是String类的本身
if (anObject instanceof String) {
//拿到当前的字符串
String anotherString = (String)anObject;
//拿到内容的长度
int n = value.length;
//和当前的内容的长度进行比较,如果内容长度相同的话,再继续比价每个字符是否相同
if (n == anotherString.value.length) {
char v1[] = value;
char v2[] = anotherString.value;
int i = 0;
while (n-- != 0) {
if (v1[i] != v2[i])
return false;
i++;
}
return true;
}
}
//如果内容不相同则返回false。
return false;
}
4) public boolean equalsIgnoreCase(String anotherString):与equals方法相似,但忽略大小写。
String str1=new String("asdfzxc");
String str2=new String("ASDFZXC");
System.out.println(str1.equalsIgnoreCase(str2));//true
equalsIgnoreCase方法的源代码如下:
public boolean equalsIgnoreCase(String anotherString) {
return (this == anotherString) ? true
: (anotherString != null)
&& (anotherString.value.length == value.length)
&& regionMatches(true, 0, anotherString, 0, value.length);
}
public boolean regionMatches(boolean ignoreCase, int toffset,
String other, int ooffset, int len) {
char ta[] = value;
int to = toffset;
char pa[] = other.value;
int po = ooffset;
// Note: toffset, ooffset, or len might be near -1>>>1.
if ((ooffset < 0) || (toffset < 0)
|| (toffset > (long)value.length - len)
|| (ooffset > (long)other.value.length - len)) {
return false;
}
while (len-- > 0) {
char c1 = ta[to++];
char c2 = pa[po++];
if (c1 == c2) {
continue;
}
if (ignoreCase) {
// If characters don't match but case may be ignored,
// try converting both characters to uppercase.
// If the results match, then the comparison scan should
// continue.
char u1 = Character.toUpperCase(c1);
char u2 = Character.toUpperCase(c2);
if (u1 == u2) {
continue;
}
// Unfortunately, conversion to uppercase does not work properly
// for the Georgian alphabet, which has strange rules about case
// conversion. So we need to make one last check before
// exiting.
if (Character.toLowerCase(u1) == Character.toLowerCase(u2)) {
continue;
}
}
return false;
}
return true;
}
5) contentEquals比较两个字符串的内容是否相同
String str1=new String("asdfzxc");
String str2=new String("ASDFZXC");
System.out.println(str1.contentEquals(str2));//false
5:replace:替换的方法 1)public String replace(char oldChar, char newChar):用字符newChar替换当前字符串中所有的oldChar字符,并返回一个新的字符串。
System.out.println("fluck fluck fluck".replace("f","l"));//luck luck luck
2) public String replaceFirst(String regex, String replacement):该方法用字符replacement的内容替换当前字符串中遇到的第一个和字符串regex相匹配的子串,应将新的字符串返回。
String str3 = str.replaceFirst("asd","fgh");//str3 = "fghzxcasd"
3) public String replaceAll(String regex, String replacement):该方法用字符replacement的内容替换当前字符串中遇到的所有和字符串regex相匹配的子串,应将新的字符串返回。
String str4 = str.replaceAll("asd","fgh");//str4 = "fghzxcfgh"
注意:replace方法不能使用正则表达式,replaceAll方法可以使用正则表达式
6: String[] split(String str):将str作为分隔符进行字符串分解,分解后的字字符串在字符串数组中返回。
String personString="张三_10_男";
String[] person = personString.split("_");
System.out.println(person);//[Ljava.lang.String;@15db9742]
for(String info:person){
System.out.print(info);//张三 10 男
}
String personString="张三_10_男";
String[] person = personString.split("_");
System.out.println(Arrays.toString(person));//[张三,10,男]