如果你想使用 a 选择,Seq<String>你可以分开Seq提取第一个元素:Seq<String> columns = /* ... */;Dataframe<Row> newDf = df.select( columns.apply(0), // first element columns.slice(1, columns.size()) // from the second to the end);也许首先检查长度columns,以避免IndexOutOfBoundsException