I usually end up trying every combination until it compiles. Can somebody explain what I should use where?
|
I'll disagree with Chris's answer in one regard. The classes This arises out of the fact that not everything in Java is an object. In addition to objects, there are primitives. All objects in Java are descendant from In Scala, on the other hand, everything is an object, all objects belong to a class, and they interact through methods. The JVM bytecode generated does not reflect this, but that doesn't make them any less so, just as Java has generics, even though the bytecode doesn't have them. So, in Scala, all objects are descendant from Everything that is consider a primitive in Java is descendant from Also extending Up to Scala 2.9.x, a user could not extend
What each means should be obvious from the class hierarchy. Of note, however, is that Starting with Scala 2.10.0, though, the user can extend
PS: In my own view, Java is likely to follow C# in allowing "struct" primitives, and maybe typedefs, as parallelism without resorting to them is proving difficult to accomplish with good performance. |
|||||
|
|
Seen this? The text of the page has some java interoperability remarks. http://www.scala-lang.org/node/128
|
||||
|
|
|
Howwever, in Java/Scala interoperation, a method which accepts a Java What are you actually attempting to do? |
||||
|
