Besides integration with dynamic languages on the JVM, what are the other powerful uses of a Dynamic type in a statically typed language like Scala?
|
I guess a dynamic type could be used to implement several of the features found in JRuby, Groovy or other dynamic JVM languages, like dynamic metaprogramming and method_missing. For example creating a dynamic query similar to Active Record in Rails, where a method name with parameters is translated to an SQL query in the background. This is using the method_missing functionality in Ruby. Something like this (in theory - have not tried to implement anything like this):
Allowing usage like this, where you can call methods 'name' and 'findByName' without having them explicitly defined in the Person class:
If dynamic metaprogramming was to be added, the Dynamic type would be needed to allow invoking methods that have been added during runtime.. |
|||
|
|
|
Probably DSLs. See http://pastie.org/1468102 |
|||||||||||
|
|
Odersky says the primary motivation was integration with dynamic languages: http://groups.google.com/group/scala-language/msg/884e7f9a5351c549 [edit] Martin further confirms this here |
||||
|
|
|
You might also use it for syntactic sugar on maps:
To be honest this only saves you a couple of keystrokes from:
|
|||||
|
dynamicin C#.4), I don't really "see" what's going on with that commit. Would be interesting to see how it fits in. – user166390 Jan 17 '11 at 3:38