• String类的详解


    一、字符串的构造

           String类的构造方法非常多,常用的就以下三种:使用常量串构造、直接newString对象构造

    使用字符串数组进行构造

    1. public static void method1(){//验证String对象常见的构造方法
    2. String s1 = "hello";
    3. System.out.println(s1);
    4. String s2 = new String("hello");
    5. System.out.println(s2);
    6. char[] ch = {'h','e','l','l','o'};
    7. String s3 = new String(ch);
    8. System.out.println(s3);
    9. }

    注:1、String是引用类型,内部并不储存字符串本身,而储存的是String对象的地址,在JDK1.8中,字符串实际保存在char类型的数组中

           2、String类不能被继承,String类实现了Comparable接口,因为String类的对象可以直接比较,或者可以直接排序

            3、在Java中被“”引起来的也是String类型对象

    二、String对象的比较

          Java中总共提供了4种方式

        1、==比较是否引用同一个对象

              注意:对于内置对象,==比较的是变量中的值,对于引用类型,==比较的是引用中的地址

    1. public static void method2(){//String为引用类型
    2. String s1 = "hello";
    3. String s2 = new String("hello");
    4. String s3 = s1;
    5. System.out.println(s1 == s2);
    6. System.out.println(s1 == s3);
    7. }

         2、 比较字符串中的内容用equals()

               boolean equals(Object anObject)方法:按照字典序(字符大小的顺序)比较

               String类重写了父类Object中的equals方法

    1. //比较字符串中的内容用equals()
    2. public static void method4(){
    3. String s1 = new String("hello");
    4. String s2 = new String("world");
    5. String s3 = new String("hello");
    6. System.out.println(s1.equals(s2));
    7. System.out.println(s1.equals(s3));
    8. }

        3、比较字符串中的内容也可以用compareTo()

                int compareTo(String s):按照字典序进行比较,返回int类型,具体比较方式为:

               1)先按照字典序大小进行比较,如果出现不等的字符,直接返回这两个字符的大小差值

                2)如果前k个字符相等(k为两个字符长度最小值),返回值两个字符串长度差值

    1. //比较字符串中的内容也可以用compareTo()
    2. public static void method5(){
    3. String s1 = new String("abc");
    4. String s2 = new String("a");
    5. String s3 = new String("abcdef");
    6. String s4 = new String("abd");
    7. String s5 = new String("abc");
    8. System.out.println(s1.compareTo(s2));
    9. System.out.println(s1.compareTo(s3));
    10. System.out.println(s1.compareTo(s4));
    11. System.out.println(s1.compareTo(s5));
    12. }

        4、int compareToIgnoreCase(String str):与compareTo方式相同,但是忽视大小写比较

    三、字符串查找

            几种常用的方法

    1. char charAt(int index)
    2. //返回index位置上的字符,如果index为负数或者越界,抛出IndexOutOfBoundsException异常
    3. int indexOf(int ch)
    4. //返回ch第一次出现的位置,没有返回-1
    5. int indexOf(int ch,int fromIndex)
    6. //从fromIndex位置开始找ch第一次出现的位置,没有返回-1
    7. int indexOf(String str)
    8. //返回str第一次出现的位置,没有返回-1
    9. int indexOf(String str,int fromIndex)
    10. //从fromIndex位置开始找str第一次出现的位置,没有返回-1
    11. int lastIndexOf(int ch)
    12. //从后往前找,返回ch第一次出现的位置,没有返回-1
    13. int lastIndexOf(int ch,int fromIndex)
    14. //从fromIndex位置开始找,从后往前找ch第一次出现的位置,没有返回-1
    15. int lastIndexOf(String str)
    16. //从后往前找,返回str第一次出现的位置,没有返回-1
    17. int lastIndexOf(String str,int fromIndex)
    18. //从fromIndex位置开始找,从后往前找str第一次出现的位置,没有返回-1

    四、转换

          1、数值和字符串转换

    1. //转化
    2. public static void method6() {
    3. String s1 = String.valueOf(123);
    4. String s2 = String.valueOf(12.3);
    5. String s3 = String.valueOf(false);
    6. System.out.println(s1);
    7. System.out.println(s2);
    8. System.out.println(s3);
    9. //数值类型的字符串转化为数值
    10. int data = Integer.parseInt("1234");
    11. double d = Double.parseDouble("12.34");
    12. System.out.println(data);
    13. System.out.println(d);
    14. }

          2、字符串转数组

    1. //字符串和数字之间的转换
    2. char[] c = s3.toCharArray();
    3. String s4 = new String(c);

          3、大小写转换

    1. public static void method6() {
    2. //大小写转化
    3. String s = "ADcgD";
    4. s = s.toLowerCase();
    5. System.out.println(s);
    6. s = s.toUpperCase();
    7. System.out.println(s);
    8. }

         4、 格式化

    1. public static void main(String[] args) {
    2. //格式化
    3. String date = String.format("%d-%d-%d",2022,9,20);
    4. System.out.println(date);
    5. }

    注:

      1、short和byte这两种类型的数据可以使用int类型来接收,即short和byte可以隐式转换为int 

      2、将自定义类型的对象转换为String类型的字符串,类中需要重写Object类中的toString的方法,如果没有重写,将来转换完之后的结果:类全路径名+@+hashCode的十六进制的结果

    五、字符串替换

        使用一个指定的新的字符串替换掉已有的字符串数据,可用的方法如下:

    1. String replaceAll(String regex,String replacement)
    2. String replaceFirst(String regex,String replacement)
    1. //测试字符串的替换
    2. public static void method1(){
    3. String s1 = "aaaaaaa";
    4. System.out.println(s1.replaceAll("a","b"));
    5. System.out.println(s1.replaceFirst("a","b"));
    6. }

    注意:replaceAll方法并不是在s的基础上替换的,而是将替换的结果作为一个新的字符串返回了,替换之后始终不变,因为String类在设计的时候,就严格限定了String类的对象是不可改变的,即字符串是不可变对象

    六、字符串拆分

         可以将一个完整的字符串按照指定的分隔符划分为若干个字符串

    1. String[] split(String regex)
    2. //将字符串全部拆分
    3. String[] split(String regex,int limit)
    4. //将字符串以指定的格式,拆分为limit组
    1. //字符串的分割
    2. public static void method2(){
    3. String s = "apple bear pink glass";
    4. String[] ans = s.split(" ");
    5. for(int i = 0;i < ans.length;i++){
    6. System.out.println(ans[i]);
    7. }
    8. System.out.println("=====================");
    9. String s1 = "apple,bear,pink,glass";
    10. String[] ans1 = s1.split(",",2);
    11. for(int i = 0;i < ans1.length;i++){
    12. System.out.println(ans1[i]);
    13. }
    14. }

    注意: 

         1、字符“|”,“*”,“+”都得加上转义字符,前面加上“//”

         2、如果是“\”,那么就得写成“\\\\”

         3、如果一个字符串中有多个分隔符,可以用“|”作为连字符

    七、字符串截取

         从一个完整的字符串之中截取部分内容,可用方法如下

    1. String substring(int beginIndex)
    2. String substring(int beginIndex,int endIndex)
    1. //字符串的截取
    2. public static void method3(){
    3. String s = "hello world!!!";
    4. String ans = s.substring(s.indexOf("world"));
    5. System.out.println(ans);
    6. int start = s.indexOf("world");
    7. ans = s.substring(start,start + "world".length());
    8. System.out.println(ans);
    9. }

    注意:

       1、索引从0开始

        2、注意前闭后开,substring (0,5)包含0号下标的字符,不包含5号下标的字符

    八、其他操作方法

    1. String trim()
    2. //去掉字符串中的左右空格,保留中间空格
    1. //其他操作
    2. public static void method4(){
    3. String s = " ahdurS12 &$ 哈哈#&fe ";
    4. String s1 = s.trim();
    5. System.out.println(s1);
    6. }

    九、String、StringBuffer、StringBuilder的区别

       1、String的内容不可修改,StringBuffer、StringBuilder的内容可以修改

        2、StringBuffer、StringBuilder的大部分功能是相似的

        3、StringBuffer采用同步处理,属于线程安全操作,而StringBuilder未采用同步处理,属于线程不安全操作

  • 相关阅读:
    LeetCode(力扣)63. 不同路径 IIPython
    【Jetson】同时配置多个 USB 串口设备,令其端口固定,还可通过别名访问,使用 Jetson 平台
    快递排序Java
    3W 字详解 Java 集合
    spark sql重分区
    代码随想录二刷 Day 45
    Python---函数练习:编写一个打招呼程序
    本地电脑部署微力同步私人网盘,端口映射实现远程访问
    docker的使用以及注意事项
    2023App测试必掌握的核心测试:UI、功能测试
  • 原文地址:https://blog.csdn.net/m0_53677355/article/details/127039243