gpt4 book ai didi

斯卡拉 : how to match a case by array length

转载 作者:行者123 更新时间:2023-12-05 09:21:28 26 4
gpt4 key购买 nike

这里是新手。

我们有一些(可能是丑陋的)代码:

val rowSplit = line.split(",", -1)

rowSplit match {
case array: Array[String] =>
{
if (array.length < 18) {
//do sth

}
else if(array.length < 26){

// smth else
}
}

我想知道我们是否可以直接在 case 语句中匹配具有不同长度的数组。

这可能吗?

PS:我不知道这篇 SO 帖子是否回答了我的问题。如果是这样怎么办?

In scala, how can I use pattern match to match a list with specified length?

最佳答案

您可以像这样匹配数组并向匹配的大小写添加条件:

rowSplit match {  
case array:Array[String] if array.length < 18 => //do sth
case array:Array[String] if array.length > 26 => ...
}

或者简单地说:

rowSplit match {  
case a if a.length < 18 => //do sth
case a if a.length > 26 => ...
}

注意这里我们可以使用variable pattern a 而不是 typed patternsa:Array[String] 因为我们不需要 rowSplit 的进一步类型匹配,我们知道 rowSplit 是类型 Array [String],它有字段length

关于斯卡拉 : how to match a case by array length,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32200819/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com