记个笔记

字符串操作类中s1.compareTo(s)规则

Compares two strings lexicographically. The comparison is based on the Unicode value of each character in the strings. The character sequence represented by this String object is compared lexicographically to the character sequence represented by the argument string. The result is a negative integer if this String object lexicographically precedes the argument string. The result is a positive integer if this String object lexicographically follows the argument string. The result is zero if the strings are equal; compareTo returns 0 exactly when the equals(Object) method would return true.

This is the definition of lexicographic ordering. If two strings are different, then either they have different characters at some index that is a valid index for both strings, or their lengths are different, or both. If they have different characters at one or more index positions, let k be the smallest such index; then the string whose character at position k has the smaller value, as determined by using the < operator, lexicographically precedes the other string. In this case, compareTo returns the difference of the two character values at position k in the two string -- that is, the value:

 this.charAt(k)-anotherString.charAt(k)
 

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()
 

1.当字符串s1和s都表示数字时,有三种结果-1(代表s1<s) ,  0(代表s与s1相等)  ,1(代表s1>s)。

2.当字符串s1和s不表示数字时,有三种结果负整数 (代表s1和s中的第一个不相同的字符的Unicode值相减为负数),0(代表s与s1相等) ,

正整数(代表s1和s中的第一个不相同的字符的Unicode值相减为正数);若s1包含s(即s中的字符,s1都有),也有上述三种结果

但意义不同(除0表示相等)其中正整数表示s1包含s且长度大于s;反之为负整数。

3.Unicode中 a表示61   A表示41其它字母类推。

最后总结英语是有必要学的!

最新文章

  1. Java_正则表达式
  2. 超简单,安卓模拟器手动root
  3. 一个人独立开发 3D 游戏引擎可能吗?
  4. 最近开始做Android了
  5. hdu Sudoku Killer
  6. 获取AndroidManifest.xml文件中的meta-data
  7. phpcms V9 添加模块
  8. RelativeLayout相对布局
  9. eclipse项目!*图标含义
  10. mysql中php生成唯一ID
  11. 利用Ajax改变发送请求方式
  12. Facebook的Pop动画库相关资料
  13. Struts一张图
  14. 在使用Kettle的集群排序中 Carte的设定——(基于Windows)
  15. Oracle start with connect by prior 用法
  16. 基于Visual C++2013拆解世界五百强面试题--题12-进制转换
  17. ACM经典算法之字符串处理:字符串替换
  18. appfog java jdbc mysql连接
  19. cygwin安装gcc/g++
  20. 网络防火墙和NAT地址转换

热门文章

  1. 打靶笔记-03-vulhub-Moriarty Corp
  2. xxl-job踩坑记录——执行器,执行10分钟自动失败
  3. spring——IOC理论
  4. 5月25日 python学习总结 HTML标签
  5. SQL注入之PHP+Mysql
  6. IIS短文件猜解
  7. [源码解析] TensorFlow 分布式环境(5) --- Session
  8. SpringBoot集成SpringBootDataElasticSearch
  9. hdu 1175 连连看 DFS_字节跳动笔试原题
  10. java-jsp-learnning