String类代表字符串,java中所有的""引起来的元素都是以字符串的形式表示的
在API
1、字符串是不可变的
String 代表字符串
String name = "万帅";
name = "万帅帅";//不能改变字符串
//堆:存值
//栈:存地址
//线程 线程安全和不安全 多线程
2、字符串是一个常量,它们的值被创建之后就不可以改变。一个字符串一旦确定,会在内存中
生成一个此字符串的地址,字符串本身就不可以改变了,但是存在栈中的局部变量是可以
发生改变的。
3、字符串中有大量的重载的构造器
String s1 = "abc";
String s2 = new String("abc");
4、String类中常用的构造函数
String() 初始化创建新的String类型对象,使其表示为空字符串序列
String(byte[] bytes):通过字节数组来创建字符串 以ASCII码进行转换的
String(char[] values):将所有的字符连起来
String(String s):通过一个字符串来创建一个新的字符串
public static void main(String[] args) {
String s1 = "abc";
String s2 = new String("abc");
System.out.println(s1 == s2);//false 比较的是地址
//String重写了Object的equals方法,简历了字符串自己的判断相同的依据
System.out.println(s1.equals(s2));//比较的是连个字符串的内容是否相同
byte[] arr = {65,66,67,68,69,70};
String s3 = new String(arr);
System.out.println("s3 = " + s3);//s3 = ABCDEF
char[] arr2 = {'是','额','好','有','0'};
String s4 = new String(arr2);
System.out.println("s4 = " + s4);//s4 = 是额好有0
}
运行结果:
5、String类中常用的方法
public static void main(String[] args) {
String s = "天气好的想骂娘,不想上课想去浪";
//获取到字符串的长度
int n = s.length();
System.out.println("s的长度 = " + n);
//获取部分字符串substring()
//String substring(int beginIndex):返回一个字符串,该字符串是此字符串的字串
//String substring(int beginIndex,int endIndex):返回一个字符串,该字符串是此字符串的字串
// 包含开始的索引,不包含结束的索引
//索引从0开始
String s1 = s.substring(8);
System.out.println("s1 = " + s1);
String s2 = s.substring(9,12);
System.out.println("s2 = " + s2);
//boolean startsWith(String s):字符串是否以指定字符串开头
//boolean endsWish(String s):字符串是否以指定的字符串结尾
//友情提示:注意大小写
String s3 = "C:\\Users\\ChenyangZheng\\音乐\\许嵩 - 如果当时.mp3";
boolean f1 = s3.startsWith("C:");
System.out.println(f1);
//判断文件是不是一个MP3文件
boolean f2 = s3.endsWith(".mp3");
System.out.println(f2);
//contains
//boolean contains(CharSequence s)
// 当且仅当此字符串中包含指定的char类型的值的序列时才返回true
String s4 = "Masaaki kishibe";
boolean flag = s4.contains("sk");
System.out.println("flag = " + flag);
//indexOf
//int indexOf(String str):返回指定字符串在当前字符串中第一次出现的索引
//int indexOf(String str,int fromIndex)
//指定的字符串的第一个出现的索引,开始指定索引处,或 -1如果不存在这样的发生。
//int lastIndexOf(String str):返回指定字符串在当前字符串中最后一次出现的索引
//int lastIndexOf(String str,int fromIndex)
//指定的字符串的第一个出现的索引,开始指定索引处,或 -1如果不存在这样的发生。
int n1 = s4.indexOf("sh");
System.out.println(n1);
//从哪个下标的元素开始寻找
int n2 = s4.indexOf("ki",7);
System.out.println(n2);
int n3 = s4.lastIndexOf("ki");
System.out.println("n3 = " + n3);
//将字符串转换为byte[]或者char[] getBytes toCharArray
//char[] toCharArray() :将次字串转换为新的数组
//byte[] getBytes(): 将此字符串转换为字节数组
String s5 = "hehe";
char[] arr1 = s5.toCharArray();
System.out.println(arr1.length);
System.out.println(Arrays.toString(arr1));
byte[] arr2 = s5.getBytes();
System.out.println(Arrays.toString(arr2));
//String toString():返回它本身
//boolean isEmpty() 返回字符串是否为空
//char charAt():返回char执行索引出的值
String s6 = "ababababab";
//char c = s6.charAt(11);
//抛出String方法来指示索引为负或大于字符串的大小。
//对于某些方法(如charAt方法),当索引等于字符串的大小时,也会抛出此异常。
//StringIndexOutOfBoundsException
//System.out.println(c);
//String toLowerCase(): 转小写
//String toUpperCase(): 转大写
String s7 = "IndexOf";
String s8 = s7.toLowerCase();
System.out.println(s8);
String s9 = s8.toUpperCase();
System.out.println(s9);
//字符串替换:replace replaceAll
//String replace(char oldChar,char new) 替换一个字符
//String replace(charSequence old,charSequence new):替换一个字符串
String str = "this1 is2 my3 homework4! I5 must6 finish7 it8";
String s10 = str.replace("i","*");
System.out.println(str);
System.out.println(s10);
String s11 = str.replace("is","$");
System.out.println(s11);
//字符串连接 concat join
String s12 = "hello";
String s13 = s12.concat("world");
System.out.println(s13);
String s14 = String.join("-","10","20","30","40");
System.out.println(s14);
//trim:去掉字符串前后的空格
//比较两个字符串的顺序
//"a".compareTo("b")
int result = "z".compareTo("b");//-1
//0 代表相等 <0比字符串参数小 >0比字符串参数大
System.out.println(result);