String类提供的构造方式非常多,常用的就以下三种:
public static void main(String[] args) {
// 使用常量串构造
String s1 = "hello";
System.out.println(s1);
// 直接newString对象
String s2 = new String("hello");
System.out.println(s1);
// 使用字符数组进行构造
char[] array = {'h', 'e', 'l', 'l', 'o'};
String s3 = new String(array);
System.out.println(s1);
}
注意
- String是引用类型,内部并不存储字符串本身
- 在Java中“”引起来的也是String类型对象。
public static void main(String[] args) {
int a = 10;
int b = 20;
int c = 10;
// 对于基本类型变量,==比较两个变量中存储的值是否相同
System.out.println(a == b); // false
System.out.println(a == c); // true
// 对于引用类型变量,==比较两个引用变量引用的是否为同一个对象
String s1 = new String("hello");
String s2 = new String("hello");
String s3 = new String("world");
String s4 = s1;
System.out.println(s1 == s2); // false
System.out.println(s2 == s3); // false
System.out.println(s1 == s4); // true
}
字典序:字符大小的顺序
public boolean equals(Object anObject) {
// 1. 先检测this 和 anObject 是否为同一个对象比较,如果是返回true
if (this == anObject) {
return true;
}
// 2. 检测anObject是否为String类型的对象,如果是继续比较,否则返回false
if (anObject instanceof String) {
// 将anObject向下转型为String类型对象
String anotherString = (String) anObject;
int n = value.length;
// 3. this和anObject两个字符串的长度是否相同,是继续比较,否则返回false
if (n == anotherString.value.length) {
char v1[] = value;
char v2[] = anotherString.value;
int i = 0;
// 4. 按照字典序,从前往后逐个字符进行比较
while (n-- != 0) {
if (v1[i] != v2[i])
return false;
i++;
}
return true;
}
}
return false;
}
与equals不同的是,equals返回的是boolean类型,而compareTo返回的是int类型。具体比较方式:
char charAt(int index) //返回index位置上字符,如果index为负数或者越界,抛出IndexOutOfBoundsException异常
int indexOf(int ch) //返回ch第一次出现的位置,没有返回-1
int indexOf(int ch, intfromIndex) //从fromIndex位置开始找ch第一次出现的位置,没有返回-1
int indexOf(String str) //返回str第一次出现的位置,没有返回-1
int indexOf(String str, intfromIndex) //从fromIndex位置开始找str第一次出现的位置,没有返回-1
int lastIndexOf(int ch) //从后往前找,返回ch第一次出现的位置,没有返回-1
int lastIndexOf(int ch, intfromIndex) //从fromIndex位置开始找,从后往前找ch第一次出现的位置,没有返回-1
int lastIndexOf(String str) //从后往前找,返回str第一次出现的位置,没有返回-1
int lastIndexOf(String str, intfromIndex) //从fromIndex位置开始找,从后往前找str第一次出现的位置,没有返回-1
注意:上述方法都是实例方法。
static String valueOf(char[]);
String toUpperCase();//大写
String toLowerCase();//小写
char[] toCharArray();
使用一个指定的新的字符串替换掉已有的字符串数据,可用的方法如下:
String replaceAll(String regex, String replacement) //替换所有的指定内容
String replaceFirst(String regex, String replacement) //替换收个内容
注意事项: 由于字符串是不可变对象, 替换不修改当前字符串, 而是产生一个新的字符串.
可以将一个完整的字符串按照指定的分隔符划分为若干个子字符串。
String[] split(String regex) //将字符串全部拆分
String[] split(String regex, int limit) //将字符串以指定的格式,拆分为limit组
注意事项:
- 字符"|“,”*“,”+"都得加上转义字符,前面加上 “\” .
- 而如果是 “” ,那么就得写成 “\\” .
- 如果一个字符串中有多个分隔符,可以用"|"作为连字符.
从一个完整的字符串之中截取出部分内容。
String substring(int beginIndex) //从指定索引截取到结尾
String substring(int beginIndex, int endIndex) //截取部分内容
注意事项:
- 索引从0开始
- 注意前闭后开区间的写法, substring(0, 5) 表示包含 0 号下标的字符, 不包含 5 号下标