Skip to content

Instantly share code, notes, and snippets.

@xuwei-k
Created July 6, 2011 06:50
Show Gist options
  • Save xuwei-k/1066693 to your computer and use it in GitHub Desktop.
Save xuwei-k/1066693 to your computer and use it in GitHub Desktop.
Java の Map ェ・・・
scala> DBObject("ccc" -> Map("aaa" -> "bbb"))
res54: com.mongodb.casbah.commons.Imports.DBObject = { "ccc" : [ [ "aaa" , "bbb"]]}
scala> DBObject("ccc" -> new java.util.HashMap[String,AnyRef](){put("aaa","bbb")})
res55: com.mongodb.casbah.commons.Imports.DBObject = { "ccc" : { "aaa" : "bbb"}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment