我試圖從功能未來在以下方法返回一個元組返回元組的未來:Scala中不工作
def f:Future[(List[Int],List[String])] = Future{
(List(1,2,3),List("Hello","World"))
}
這我是從主調用如下:
var (a,c) = f
這是給我下面的錯誤
Error: constructor cannot be instantiated to expected type;
found : (T1, T2)
required: scala.concurrent.Future[(List[Int], List[String])]
是的,我知道了......非常感謝 –