📅  最后修改于: 2023-12-03 15:25:28.710000             🧑  作者: Mango
在 Scala 中,String 类型有一个 compareTo() 方法,该方法用于比较两个字符串的大小关系。该方法返回一个整数值,用于表示两个字符串在字典序上的大小关系。
def compareTo(that: String): Int
compareTo() 方法返回一个整数值,其含义如下:
以下是一个演示如何使用 compareTo() 方法比较两个字符串的示例代码:
object CompareToExample {
def main(args: Array[String]): Unit = {
val str1 = "hello world"
val str2 = "Hello world"
val str3 = "hello scala"
if (str1.compareTo(str2) == 0) {
println(s"$str1 和 $str2 是相等的")
} else if (str1.compareTo(str2) < 0) {
println(s"$str1 小于 $str2")
} else {
println(s"$str1 大于 $str2")
}
if (str1.compareTo(str3) == 0) {
println(s"$str1 和 $str3 是相等的")
} else if (str1.compareTo(str3) < 0) {
println(s"$str1 小于 $str3")
} else {
println(s"$str1 大于 $str3")
}
}
}
这段示例代码中,我们首先定义了三个字符串:str1
、str2
和 str3
。然后我们使用 compareTo()
方法比较了这三个字符串之间的大小关系,并输出了相应的结果。
在上述示例代码中,str1
和 str2
的大小关系是相等的,因为在比较两个字符串时,compareTo()
方法会忽略字符串中字符的大小写,所以大小写不同的字符串在比较时会被视为相等的。
输出结果如下:
hello world 和 Hello world 是相等的
hello world 小于 hello scala