I have the following code snippet:
val map = new LinkedHashMap[String,String]
map.put("City","Dallas")
println(map.get("City"))
This outputs Some(Dallas) instead of just Dallas. Whats the problem with my code ?
Thank You
|
I have the following code snippet:
This outputs Thank You |
|||
|
|
|
Use the
|
|||||
|
|
It's not really a problem. While Java's Map version uses REPL session showing why this is useful:
Or the not recommended but simple
Check the Option documentation for more goodies. |
|||||||||
|
|
There are two more ways you can handle You can pattern match them:
Or there is another neat approach that appears somewhere in Programming in Scala. Use
|
|||
|
|