我无法理解为什么两个代码要做同样的事情,在Scala中做不同的事情。
第一个例子:
scala> val ggg = Source.fromFile("/somefile");
ggg: scala.io.BufferedSource = non-empty iterator
scala> ggg.getLines();
res67: Iterator[String] = empty iterator
第二个例子:
scala> Source.fromFile("/somefile").getLines();
res68: Iterator[String] = non-empty iterator
他们不是要做同样的事情,还是我错过了什么?
答案 0 :(得分:6)
这似乎是BufferedSource.toString
的怪癖(错误?)。观察:
// no problem
scala> { val x = Source.fromFile("foo.txt"); x.getLines() }
res10: Iterator[String] = non-empty iterator
// ahh, calling toString somehow emptied our iterator
scala> { val x = Source.fromFile("foo.txt"); println(x.toString); x.getLines() }
non-empty iterator
res11: Iterator[String] = empty iterator
要显示表达式的值,REPL需要调用BufferedSource.toString
,这会产生清空迭代器的副作用。
答案 1 :(得分:2)