队列未被识别

时间:2016-01-23 14:09:54

标签: scala

我想在Scala中使用不可变的Queue,如下所示:

var a:Queue[Int] = Queue.empty[Int]

但是,我收到以下错误:

error: not found: type Queue

我尝试导入包含它的库,但没有效果:

import scala.collection.immutable

1 个答案:

答案 0 :(得分:1)

非常确定您需要在导入中添加._,如下所示:

import scala.collection.immutable._

或者将Queue专门导入为:

import scala.collection.immutable.Queue