一、String概念及创建
1.1 String概念
Java中字符串是由字符组成的一个字符数组,是复合数据类型,也是一种引用类型。所有涉及到可能修改字符串内容的操作都是创建一个新对象,改变的是新对象;String类中的字符实际保存在内部维护的value字符数组中
1.2 String的创建
String类提供的构造方式非常多,常用的就以下三种:
//常量字符串构造 String str="hello word"; System.out.println(str); //new String对象 String str1=new String("hello!"); System.out.println(str1); //用字符数组构造 char[] chars={'h','e','l','l','o',' ','w','o','r','l','d'}; String str2=new String(chars); System.out.println(str2);
注意:String是引用类型,内部并不存储字符串本身,而是存储一个地址,在Java中“”引起来的也是String类型对象。
String s1="hello"; String s2="world"; String s3=s1;
二、String常用方法
由于字符串是不可变对象, 不是修改当前字符串, 而是产生一个新的字符串
2.1 String对象的比较
字符串的比较是常见操作之一,Java中提供了4中方式:
1. ==比较是否引用同一个对象。
int a=5; int b=10; //基本数据类型变量,==比较两个变量的值 System.out.println(a==b); //引用类型变量,==比较两个引用变量引用是否为同一对象 String s1="hello"; String s2="world"; String s3="hello"; String s4=s1; System.out.println(s1==s2); System.out.println(s1==s3); System.out.println(s1==s4);
2.boolean equals(Object anObject) 方法,比较字符串的内容是否相等,返回的是boolean类型。
String s1 = new String("hello"); String s2 = new String("hello"); String s3 = new String("Hello"); //s1、s2、s2引用对象不同,但s1和s2内容相同 System.out.println(s1.equals(s2)); System.out.println(s1.equals(s3));
3.int compareTo(String s) 方法
compareTo返回的是int类型,比较方式: 先按照字典次序大小比较,如果出现不等的字符,直接返回这两个字符的大小差值;如果前k个字符相等(k为两个字符长度最小值),返回两个字符串长度差值。
String s1=new String("abc"); String s2=new String("ac"); String s3=new String("abc"); String s4=new String("abcdef"); System.out.println(s1.compareTo(s2));//输出字符差值-1 System.out.println(s1.compareTo(s3));//输出0 System.out.println(s1.compareTo(s4));//输出长度差值-3
4. int compareToIgnoreCase(String str) 方法:与compareTo方式相同,但是忽略大小写比较。
String s1=new String("abc"); String s2=new String("ac"); String s3=new String("ABC"); String s4=new String("abcdef"); System.out.println(s1.compareToIgnoreCase(s2));//输出字符差值 System.out.println(s1.compareToIgnoreCase(s3));//输出0 System.out.println(s1.compareToIgnoreCase(s4));//输出长度差值
2.2 字符串查找
字符串查找也是字符串中非常常见的操作,String类提供的常用查找的方法:
String s1="aabbccaabbcc"; System.out.println(s1.charAt(2)); //b System.out.println(s1.indexOf('c')); //4 System.out.println(s1.indexOf('b',4)); //8 System.out.println(s1.indexOf("bbcc")); //2 System.out.println(s1.indexOf("bcc",4)); //9 System.out.println(s1.lastIndexOf('c')); //11 System.out.println(s1.lastIndexOf('c',6)); //5 System.out.println(s1.lastIndexOf("bcc")); //9 System.out.println(s1.lastIndexOf("bcc",8)); //3
2.3 转化
1.数字和字符串转化 String.valueOf、Integer.parseInt、Double.parseDouble
//数字转字符串 String s1=String.valueOf(15); String s2=String.valueOf(1.5); String s3=String.valueOf(true); System.out.println(s1); System.out.println(s2); System.out.println(s3);
//字符串转数字,Integer、Double是Java中的包装类型 int s1=Integer.parseInt("15"); double s2=Double.parseDouble("1.5"); System.out.println(s1); System.out.println(s2);
2.大小写转换 toUpperCase、toLowercase
public static void main(String[] args) { String s1="abc"; String s2="ABC"; //小写转化为大写 System.out.println(s1.toUpperCase()); //大写转化为小写 System.out.println(s2.toLowerCase()); }
3.字符串数组转化 toCharArray、new String()
public static void main(String[] args) { String s1="hello"; //字符串转化为字符数组 char[] ch=s1.toCharArray(); for (char ch1:ch) { System.out.println(ch1); } //字符数组转化为字符串 String s2=new String(ch); System.out.println(s2); }
4.格式化 format
public static void main(String[] args) { String s=String.format("%d-%d-%d",2023,8,7); System.out.println(s); }