JavaSE笔记之String类

1.概述

程序当中所有的双引号字符串,都是String类的对象,双引号中的内容就是字符串对象。

 

2.特点

1. 字符串的内容永不可变。
2. 正是因为字符串不可改变,所以字符串是可以共享使用的。
3. 字符串效果上相当于是char[]字符数组,但是底层原理是byte[]字节数组。

 

3.使用步骤

直接创建:String str = "Hello"; // 右边直接用双引号

public String():创建一个空白字符串,不含有任何内容。
public String(char[] array):根据字符数组的内容,来创建对应的字符串。
public String(byte[] array):根据字节数组的内容,来创建对应的字符串。

代码举例:

public class Demo {

    public static void main(String[] args) {
        // 使用空参构造
        String str1 = new String(); // 小括号留空,说明字符串什么内容都没有。
        System.out.println("第1个字符串:" + str1);

        // 根据字符数组创建字符串
        char[] charArray = { 'A', 'B', 'C' };
        String str2 = new String(charArray);
        System.out.println("第2个字符串:" + str2);

        // 根据字节数组创建字符串
        byte[] byteArray = { 97, 98, 99 };
        String str3 = new String(byteArray);
        System.out.println("第3个字符串:" + str3);

        // 直接创建
        String str4 = "Hello";
        System.out.println("第4个字符串:" + str4);
    }

}

 

4.常量池

程序当中直接写上的双引号字符串,就在字符串常量池中。

 

5.常用方法

1、比较

基本类型:直接用==进行比较

引用类型:用==比较的是地址值,使用equals(区分大小写)进行比较字符串内容,equalsIgnoreCase(不区分大小写)。

写法推荐:"abc".equals(str)    不推荐:str.equals("abc")

代码举例:

public class Demo {

    public static void main(String[] args) {
        String str1 = "abc";
        String str2 = "abc";

        char[] charArray = {'a', 'b', 'c'};
        // String底层是靠字符数组实现
        String str3 = new String(charArray);

        System.out.println(str1 == str2); // true
        System.out.println(str2.equals(str3)); // true
        System.out.println(str2 == str3); // false
    }

}

 2、获取

public int length():返回此字符串的长度。
public String concat(String str):将指定的字符串连接到该字符串的末尾。
public char charAt(int index):返回指定索引处的 char值。(索引从0开始。)
public int indexOf(String str):查找参数字符串在本字符串当中首次出现的索引位置,如果没有返回-1值。

public String substring(int index):截取从参数位置一直到字符串末尾,返回新字符串。
public String substring(int begin, int end):截取从begin开始,一直到end结束,中间的字符串,[begin,end),包含左边,不包含右边。

代码举例:

public class Demo {

    public static void main(String[] args) {
        String str1 = "HelloWorld";

        //length使用
        System.out.println(str1.length());

        //concat使用
        System.out.println(str1.concat("!"));//输出HelloWorld!
        
        //获取指定索引处的字符
        System.out.println(str1.charAt(0));

        //获取str在字符串对象中第一次出现的索引,没有返回‐1
        System.out.println(str1.indexOf("l"));
        System.out.println(str1.indexOf("s"));

        String str2 = str1.substring(5);
        String str3 = str1.substring(4, 7);

        System.out.println(str2);
        System.out.println(str3);//输出oWo 
    }

}

 

3、转换

public char[] toCharArray():将当前字符串拆分成为字符数组作为返回值。
public byte[] getBytes():获得当前字符串底层的字节数组。
public String replace(CharSequence oldString, CharSequence newString):CharSequence意思就是说可以接受字符串类型。

代码举例:

public class Demo {

    public static void main(String[] args) {
        // 转换成为字符数组
        char[] chars = "Hello".toCharArray();
        System.out.println(chars[0]); // H

        // 转换成为字节数组
        byte[] bytes = "abc".getBytes();
        for (int i = 0; i < bytes.length; i++) {
            System.out.println(bytes[i]);
        }

        // 字符串的内容替换
        String str1 = "Hello~";
        String str2 = str1.replace("~", "!");
        System.out.println(str1); // Hello~
        System.out.println(str2); // Hello!
    }

}

 

 

4、分割

public String[] split(String regex):按照参数的规则,将字符串切分成为若干部分。

注意事项:
regex:正则表达式,不一定非得按照逗号(,)形式进行分割,如果按照英文句点“.”进行切分,必须写"\\."(两个反斜杠)

代码举例:

public class Demo {

    public static void main(String[] args) {
        String str1 = "aaa,bbb,ccc";
        String[] array1 = str1.split(",");
        for (int i = 0; i < array1.length; i++) {
            System.out.println(array1[i]);
        }

        String str2 = "aaa bbb ccc";
        String[] array2 = str2.split(" ");
        for (int i = 0; i < array2.length; i++) {
            System.out.println(array2[i]);
        }

        String str3 = "XXX.YYY.ZZZ";
        String[] array3 = str3.split("\\.");
        System.out.println(array3.length); // 0
        for (int i = 0; i < array3.length; i++) {
            System.out.println(array3[i]);
        }
    }

}

6.经典练习

键盘输入一个字符串,并且统计其中各种字符出现的次数(种类有:大写字母、小写字母、数字、其他)

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

分析:

1、有4个种类,定义4个变量。

2、输入的是字符串

3、使用toCharArray()对字符串进行转换。

4、对每个字符进行种类判断。

 

public class Demo {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.println("请输入一个字符串:");
        String input = sc.next();

        //定义变量
        int countUpper = 0; //大写字母
        int countLower = 0; //小写字母
        int countNumber = 0; //数字
        int countOther = 0; //其他字符

        //转换为字符数组
        char[] charArray = input.toCharArray();
        for (int i = 0; i < charArray.length; i++) {
            //取出字符
            char ch = charArray[i]; 
            //对字符进行判断
            if ('A' <= ch && ch <= 'Z') {
                countUpper++;
            } else if ('a' <= ch && ch <= 'z') {
                countLower++;
            } else if ('0' <= ch && ch <= '9') {
                countNumber++;
            } else {
                countOther++;
            }
        }

        System.out.println("大写字母有:" + countUpper + "个");
        System.out.println("小写字母有:" + countLower) + "个";
        System.out.println("数字有:" + countNumber + "个");
        System.out.println("其他字符有:" + countOther + "个");
    }

}

 

你可能感兴趣的:(JavaSE)