随笔都是学习笔记
随笔仅供参考,为避免笔记中可能出现的错误误导他人,请勿转载。
package Demo_1_22_String;

import java.util.Locale;

public class StringConcat {
    public static void main(String[] args) {
        String strA = "www.sss.cn";
        String strB = "www.".concat("sss.cn");

        System.out.println(strB);
        System.out.println(strA == strB); //false 并没有实现静态的定义

        String strC = "www.".concat("sss.cn").intern(); //入池操作
        System.out.println(strA == strC);   // ture

        System.out.println("==============================");
        // isEmpty():判断是否为空
        String strD = "";
        System.out.println(strD.isEmpty());     // ture
        System.out.println("sss".isEmpty());    // false

        System.out.println("==============================");
        // length() 判断字符串的长度
        System.out.println(strA.length());
        // trim() 处理空格,但是只能消除两边空格
        String strE = "     hello  world   ";
        System.out.println(strE);
        System.out.println(strE.trim());

        System.out.println("==============================");
        String strF = "Hello World !!!";
        System.out.println(strF.toUpperCase()); // 转大写 非字母不转换
        System.out.println(strF.toLowerCase()); // 转小写 非字母不转换
    }
}

 

posted on 2022-01-22 14:54  时间完全不够用啊  阅读(54)  评论(0编辑  收藏  举报