字符串比较
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
以上是关于字符串比较的主要内容,如果未能解决你的问题,请参考以下文章