欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用startsWith与endsWith需注意的点

程序员文章站 2023-12-21 15:49:22
...

使用startsWith与endsWith需注意的点

  1. 字符串不能颠倒
  2. 字符串需要判空
public class Test {

    public static void main(String[] args) {

        String a = "hello world";
        String b = "world";

        String c = "";

        LogJava.e(a.endsWith(b) + ""); //正常使用 true

        LogJava.e(a.endsWith(c) + ""); //c为空字符串 true
        LogJava.e(a.startsWith(c) + "");//c为空字符串 true

    }

}

上一篇:

下一篇: