I am exploring Scala language. One claim I often hear is that Scala has a stronger type system than Java. By this I think what people mean is that:
scalacrejects certain buggy programs whichjavacwill compile happily only to cause a runtime error- certain invariants can be encoded in a Scala program such that the compiler won't let the programmer write code that violates the condition
Am I right in thinking so? If so, please point to articles/blogs/papers which illustrate such examples.
String[] strings = {"foo"}; Object[] objects = strings; objects[0] = new Object();will compile just fine in java and then throw a NPE at runtime. The equivalent scala-code will not compile. – sepp2k Jun 24 '10 at 18:29ArrayStoreExceptionthat gets thrown, not an NPE. – Binil Thomas Jun 24 '10 at 19:48scalacto analyze the input program and accept it only if certain class of errors are not present. – Binil Thomas Jun 24 '10 at 19:51