compareto()方法 概览

compareto()方法 概览

java.lang.String 的 compareTo() 方法比较两个字符串,并返回:

  • 如果字符串相等,则返回0
  • 如果第一个字符串大于第二个字符串,则返回正整数
  • 如果第一个字符串小于第二个字符串,则返回负整数
  • compareTo() 方法还提供了忽略字符串的空格的方式(字符串可能会被忽略或修剪),使其仅限于比较字符。

    语法:

    ```

    public int compareTo(String anotherString)

    ```

    参数:

  • anotherString - 要比较的另一个字符串。
  • 返回值:

  • 返回一个整数,它表示两个字符串比较的结果。
  • 示例:

    ```

    String str1 = "Hello";

    String str2 = "World";

    int result = str1.compareTo(str2);

    if (result == 0) {

    System.out.println("Both strings are equal.");

    } else if (result > 0) {

    System.out.println("str1 is greater than str2.");

    } else {

    System.out.println("str1 is less than str2.");

    }

    ```

    输出:

    ```

    str1 is less than str2.

    ```

    标签:String,compareTo(),比较字符串,字典顺序

    > 同类文章:

    > 还有这些值得一看:

    粤ICP备2023131599号