如果在scala上,我如何重构这个嵌套

时间:2019-07-18 23:42:56

标签: scala if-statement case

如果在斯卡拉,我会将其嵌套

   if (collection != "h" && emptyColumns.contains(collection)) {
      message += s"$collection is null"
      //Id is not null
    } else if (emptyColumns.length >= schemaWithoutAddedColumns.length) {
      message += s"The ID ${row.getAs(collection)} is the only valid Field"
    } else {
      message = ""
    }

如何将其重构为模式匹配。

谢谢!我是scala的新手。

0 个答案:

没有答案