I am wondering why scala can't infer the type of method parameters.I can see that in haskel (which also has type inference) can do the same. Then why not for scala ?
|
|
|
To put it simply, Hindley-Milner, the type inference algorithm used by Haskell, doesn't work in the presence of subtyping. |
|||
|
|
|
First of all the situation in Scala is quite a bit different than in Haskell because it's an OO language and type-inference in an object oriented setting is a bit more complicated. The only OO language that I know which does full type inference is OCaml. OCaml does so by making extensive use of structural typing (the inferred type of However Scala has many additional features (overloading, implicit conversions) that get in the way of OCaml's approach and make full, global type inference impossible. |
|||||
|