简体   繁体   中英

How can I access the last result in Scala REPL?

In python REPL I can do things like:

>>> [1,2,3,4]
[1, 2, 3, 4]
>>> sum(_)
10

In clojure REPL I can do this:

user=> "Hello!"
"Hello!"

user=> *1
"Hello!"

Is there is something like this in Scala REPL?

Yes, you can use dot notation to refer to the last result:

scala> List(1,2,3,4)
res0: List[Int] = List(1, 2, 3, 4)

scala> .sum
res1: Int = 10

You can refer to the previous output as res N for some N . You've probably noticed that in the Scala REPL, results are printed in the form res N : Type = value :

Welcome to Scala version 2.9.1.final (Java HotSpot(TM) 64-Bit Server VM, Java 1.6.0_24).
Type in expressions to have them evaluated.
Type :help for more information.

scala> List(1,2,3,4)
res0: List[Int] = List(1, 2, 3, 4)

scala> "Hello!"
res1: java.lang.String = Hello!

Well, that res N is a real variable name. In this example, you can refer to the list as res0 and the string as res1 for (at least as far as I know) as long as the REPL is open:

scala> (res0.toString + res1) toLowerCase
res2: java.lang.String = list(1, 2, 3, 4)hello!

I normally just hit the key to bring back the last line of code and carry on typing. This has the advantage of keeping the whole expression together for easy cutting-and-pasting or editing later.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM