详解compareToIgnoreCase的返回值的原理
程序员文章站
2022-04-13 20:31:29
...
int n1="This".compareToIgnoreCase("tHe"); int n2="JAVA".compareToIgnoreCase("javaline") int n3="Java".compareToIgnoreCase("Javits")
结果是n1=4,n2=-4,n3=-8,
这是为什么呢?原因是这样的:
n1:"This" 与 "tHe"比较,从第三个字符开始不同,i比e大4
n2:前面四个字符相同,
If there is no index position at which they differ, then the shorter string lexicographically precedes the longer string. In this case, compareTo returns the difference of the lengths of the strings -- that is, the value:
this.length()-anotherString.length()
n3:同n1
【相关推荐】
1. 特别推荐:“php程序员工具箱”V0.1版本下载
2. Java免费视频教程
3. 关于compareToIgnoreCase()方法的详细介绍
4.compareToIgnoreCase()不区分大小写比较两个字符串
5.Java经典字符串比较的方法:compareToIgnoreCase()
6.深入了解compareTo与comparetoIgnorecase之间的不同之处
以上就是详解compareToIgnoreCase的返回值的原理的详细内容,更多请关注其它相关文章!
推荐阅读
-
Android NDK开发之:配置环境的详解
-
Android笔记之:深入为从右向左语言定义复杂字串的详解
-
深入Android开发FAQ的详解
-
Android开发笔记之:Handler Runnable与Thread的区别详解
-
如何关闭打开文件时提示的安全警告?打开文件安全警告取消四大方法详解
-
两分钟让你彻底明白Android Activity生命周期的详解(图文介绍)
-
Android开发笔记之:一分钟学会使用Logcat调试程序的详解
-
android如何获取view在布局中的高度与宽度详解
-
解决Fedora14下eclipse进行android开发,ibus提示没有输入窗口的方法详解
-
d3.js实现立体柱图的方法详解