compareTo() 与 compareToIgnoreCase()比较函数
compare 方法返回的是前后两个字符串对应的ASCII码的差值;compareToIgnoreCase 是忽略大小写再作比较。

Arrays.fill()函数
用法1:接受2个参数 Arrays.fill( a1, value );
将数组a1中每个位置的值初始化为 value
例如:
boolean[] a1 = new boolean[5];
Arrays.fill( a1,true );
结果 a1[] = {true,true,true,true,true};

用法2:接受4个参数
例如:
String[] a1 = new String[6];
Arrays.fill(a1, “Hello”);
Arrays.fill(a9, 3, 5,“World”);
结果是 a9[] = {Hello,Hello,Hello,World,World,Hello};
第一个参数指操作的数组,第二个和第三个指在该数组的某个区域插入第四个参数,第二个参数指起始元素下标(包含该下标)第三个参数指结束下标(不包含该下标),注意:java的数组下标从0开始

Math.min(a, b); 返回 a,b 中小的值
Math.abs(value) 返回value的绝对值
Math.max(a, b); 返回 a,b 中大的值

charAt() 方法返回指定索引位置的char值。索引范围为0~length()-1,如: str.charAt(0)检索str中的第一个字符,str.charAt(str.length()-1)检索最后一个字符。

String方法获取array数组的前size位 String newStr = new String(array, 0, size);

toLowerCase():使用默认语言环境,将String中的所有字符转换为小写

toUpperCase():使用默认语言环境,将String中的所有字符转换为大写

equals():比较两个字符串的内容是否相同 a.equals(b) 不等返回false,相等返回true.

concat():将指定字符串连接到此字符串的结尾。 s1.concat(“s2”) 将s2链接到s1后面

indexOf(String str):返回指定子字符串在此字符串中第一次出现处的索引 str1.indexOf(“lo”) 返回 lo 第一次出现的下标位置s1为helloworld,则返回值为3

lastIndexOf(String str):返回指定子字符串在此字符串中最右边出现处的索引

replace(char oldChar, char newChar):返回一个新的字符串,它是 通过用 newChar 替换此字符串中出现的所有 oldChar 得到的。

将数组转换成字符串使用 Arrays.toString()

对于数组arrayOfInts String arrayToString = Arrays.toString(arrayOfInts);

**public String substring(int beginIndex, int endIndex)**截取字符串的某几位

参数:beginIndex — 起始索引(包括), 索引从 0 开始。endIndex — 结束索引(不包括)

使用 substring() 方法截取字符串某一位开始的后几位。语法:public String substring(int beginIndex)

java比较器的工作原理 java中的比较函数_java


java比较器的工作原理 java中的比较函数_字符串_02

contains() 方法用于判断字符串中是否包含指定的字符或字符串。如果有返回true,没有返回false

```java
class Solution {
    public int findRepeatNumber(int[] nums) {
        Set<Integer> dic = new HashSet<>();
        for(int num : nums) {
            if(dic.contains(num)) return num;
            dic.add(num);
        }
        return -1;
    }
}