There are questions about why Java doesn't support unsigned types and a few questions about dealing with unsigned types. I did some searching, and it appears that Scala also doesn't support unsigned data types. Is the limition in the language design of Java and Scala, in the generated bytecode, or is it in the JVM itself? Could there be some language that runs on the JVM and is otherwise identical to Java (or Scala), yet supports unsigned primitive data types?
|
Java Bytecode Specification only defines signed types:
But a language implemented on top of the JVM can probably add an unsigned type at the syntactic level and just handle the conversion at the compilation stage. |
|||||||||
|
|
Handling unsigned arithmetic is a language/implementation issue, not platform--it could be simulated on any platform even if there was no native support. The JVM doesn't have it as a type, so Java/Scala/etc. don't support it "out of the box". |
|||
|
|
|
Although unsigned type might be emulated at the bytecode level there are some drawbacks with that:
In the light of this the benefits for unsigned types are IMHO negligible. |
|||
|
|