最佳答案
val a: Array[Int] = Array(1,2,4,5)
val b: Array[Int] = Array(1,2,4,5)
a==b // false
有没有一种模式匹配的方法来判断两个数组(或序列)是否相等?