我是初学者,scala
我卡在一条线上。我在工作表中scala
工作
type Bit = Int
var acc: List[Bit]=List() //> acc : List[Listpr.Bit] = List()
acc:+1 //> res0: List[Int] = List(1)
"ins"+acc:+1 //> res1: scala.collection.immutable.IndexedSeq[AnyVal] = Vector(i, n, s, L, i,
//| s, t, (, ), 1)
println("ins"+acc:+1) //> Vector(i, n, s, L, i, s, t, (, ), 1)
我不明白 in 是什么意思,:+
如果scala
我添加"ins"+acc:+1
它正在转换为向量集合inscala
有人请帮我吗?