我正在尝试学习 Scala 并且是新手。我知道这不是最佳的功能代码,欢迎任何人给我的任何建议,但我想了解为什么我一直对这个功能持正确态度。
def balance(chars: List[Char]): Boolean = {
val newList = chars.filter(x => x.equals('(') || x.equals(')'));
return countParams(newList, 0)
}
def countParams(xs: List[Char], y: Int): Boolean = {
println(y + " right Here")
if (y < 0) {
println(y + " Here")
return false
} else {
println(y + " Greater than 0")
if (xs.size > 0) {
println(xs.size + " this is the size")
xs match {
case xs if (xs.head.equals('(')) => countParams(xs.tail, y + 1)
case xs if (xs.head.equals(')')) => countParams(xs.tail, y - 1)
case xs => 0
}
}
}
return true;
}
balance("()())))".toList)
我知道我遇到了 if 语句的错误分支,但它在我的函数结束时仍然返回 true。请帮我理解。谢谢。