字符串比较

Posted yrxns

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串比较相关的知识,希望对你有一定的参考价值。

示例1:

public class StringDemo {
    public static void main(String[] args) {
        String str = "hello";
        System.out.println("Hello".equals(str));  //区分大小写比较
        System.out.println("Hello".equalsIgnoreCase(str));  //不区分大小写比较
    }
}

输出1:

false
true

 

示例2:

public class StringDemo {
    public static void main(String[] args) {
        System.out.println("A".compareTo("a"));
        System.out.println("a".compareTo("A"));
        System.out.println("a".compareTo("a"));
        System.out.println("ab".compareTo("ac"));
        System.out.println("范".compareTo("周")); //没有意义
    }
}

输出2:

-32
32
0
-1
11931

 

以上是关于字符串比较的主要内容,如果未能解决你的问题,请参考以下文章

postman添加断言

将 16 字节字符串与 SSE 进行比较

轻松保存重复多用的代码片段

21个常用代码片段

常用Javascript代码片段集锦

片段(Java) | 机试题+算法思路+考点+代码解析 2023