vote up 13 vote down star
1

Why doesn't Java include support for unsigned integers? It seems to me to be an odd omission, given that they allow one to write code that is less likely to produce overflows on unexpectedly large input. Furthermore, using unsigned integers can be a form of self-documentation, as they indicate that the value that the unsigned int was intended to hold is never supposed to be negative. Lastly, in some cases, unsigned integers can be more efficient for certain operations, such as division. What's the downside to including these?

flag

67% accept rate
1  
I don't know but it annoys the hell out of me; for example it is much harder to write network code this way. – DrJokepu Jan 10 '09 at 5:35

9 Answers

vote up 17 vote down check

This is from an interview with Gosling and others, about simplicity:

Gosling: For me as a language designer, which I don't really count myself as these days, what "simple" really ended up meaning was could I expect J. Random Developer to hold the spec in his head. That definition says that, for instance, Java isn't -- and in fact a lot of these languages end up with a lot of corner cases, things that nobody really understands. Quiz any C developer about unsigned, and pretty soon you discover that almost no C developers actually understand what goes on with unsigned, what unsigned arithmetic is. Things like that made C complex. The language part of Java is, I think, pretty simple. The libraries you have to look up.

link|flag
I'm going to have to disagree with Gosling here with a specific example (from CLR no less). What's more confusing giving an Array a signed integer length value or an unsigned length? It's impossible for an Array to have negative length yet our API indicates that's possible. – JaredPar Jan 10 '09 at 2:29
The argument of making Java simple is part of what got us into the whole mess with a lack of templates which they eventually brought into the language because the alternatives were so cumbersome. I do think that one could support unsigned ints with an appropriate class though, it doesn't need prims – Uri Jan 10 '09 at 5:12
@Uri true but it will almost certainly not be as performant as a primitive implementation in the JVM. – JaredPar Jan 10 '09 at 15:54
How often is that an issue though? I'm also not sure about how commands and types are encoded in bytecode, perhaps adding unsigned would have also affected the instruction set? – Uri Jan 10 '09 at 17:34
@Uri, it can be a large issue if you do math intensive work. Consider the JITing of a primitive type. Math instructions on primitives can be easily JIT'd into corresponding assembly. But if math is hand implemented it won't translate directly to assembly and hence performance will suffer. – JaredPar Jan 10 '09 at 17:51
show 1 more comment
vote up 9 vote down

http://skeletoncoder.blogspot.com/2006/09/java-tutorials-why-no-unsigned.html

This guy says because the C standard defines operations involving unsigned and signed ints to be treated as unsigned. This could cause negative signed integers to roll around into a large unsigned int, potentially causing bugs.

link|flag
How is this offensive?/ – BobbyShaftoe Jan 10 '09 at 1:55
I don't know : -( – Oscar Reyes Jan 10 '09 at 4:19
Weird. I think by flagging something offensive you can downvote an answer without losing reputation yourself. Clearly it was someone with two accounts since there is no way that two different people would have found this offensive. That cheating behaviour would explain the downvote issue too. – DrJokepu Jan 10 '09 at 5:34
vote up 1 vote down

I've heard stories that they were to be included close to the orignal Java release. Oak was the precursor to Java, and in some spec documents there was mention of usigned values. Unfortunately these never made it into the Java language. As far as anyone has been able to figure out they just didn't get implemented, likely due to a time constraint.

link|flag
vote up 4 vote down

As soon as signed and unsigned ints are mixed in an expression things start to get messy and you probably will lose information. Restricting Java to signed ints only really clears things up. I’m glad I don’t have to worry about the whole signed/unsigned business though I sometimes do miss the 8th bit in a byte. :)

link|flag
As to mixing signed/unsigned: You could have unsigned types, but disallow the mixing (or require explicit casts). Still, not clear whether it's necessary. – sleske Oct 12 at 8:27
vote up 5 vote down

Reading between the lines, I think the logic was something like this:

  • generally, the Java designers wanted to simplify the repertoire of data types available
  • for everyday purposes, they felt that the most common need was for signed data types
  • for implementing certain algorithms, unsigned arithmetic is sometimes needed, but the kind of programmers that would be implementing such algorithms would also have the knowledge to "work round" doing unsigned arithmetic with signed data types

Mostly, I'd say it was a reasonable decision. Possibly, I would have:

  • made byte unsigned, or at least have provided a signed/unsigned alternatives, possibly with different names, for this one data type (making it signed is good for consistency, but when do you ever need a signed byte?)
  • done away with 'short' (when did you last use 16-bit signed arithmetic?)

Still, with a bit of kludging, operations on unsigned values up to 32 bits aren't tooo bad, and most people don't need unsigned 64-bit division or comparison.

link|flag
I agree; esp. about having and unsigned byte and tossing short. – Software Monkey Jan 10 '09 at 5:07
I would love to have unsigned bytes, too, but I suspect the advantage of complete consistency among the integer types outweighs the convenience that unsigned bytes would bring. – Alan Moore Jan 10 '09 at 5:47
vote up 3 vote down

I think Java is fine as it is, adding unsigned would complicate it without much gain. Even with the simplified model most Java programmers don't know how the basic numeric types behave, just read the book "Java Puzzlers" and you will know what I mean.

As for practical advice:

If your values are somewhat arbitrary size and don't fit into int, use long. If they don't fit into long use BigInteger.

Use the smaller types only for arrays when you need to save space.

If you need exactly 64/32/16/8 bits, use long/int/short/byte and stop worrying about the sign, except for division and comparison.

See also this answer.

link|flag
vote up 1 vote down

I can think of one unfortunate side-effect. In java embedded databases, the number of ids you can have with a 32bit id field is 2^31, not 2^32 (~2billion, not ~4billion).

link|flag
Is there some reason negative ids wouldn't work? – Jason Orendorff Dec 12 at 16:45
vote up 1 vote down

Java does have unsigned types, or at least one: char is an unsigned short. So whatever excuse Gosling throws up it's really just his ignorance why there are no other unsigned types.

Also Short types: shorts are used all the time for multimedia. The reason is you can fit 2 samples in a single 32-bit unsigned long and vectorize many operations. Same thing with 8-bit data and unsigned byte. You can fit 4 or 8 samples in a register for vectorizing.

link|flag
1  
Yeah, I'm sure Gosling is very ignorant about Java in comparison to you. – jboxer Dec 12 at 16:55
vote up 0 vote down

Having java add ubyte, ushort, uint, and ulong to the primitive data types couldent be very hard. Maybe a few more wrapper classes but thats about it and lots of modifications to have the java compiler/runtime to support it. But in the end it would be a good thing. And another thing to add to this topic why dont they allow us to use longs with arrays. Someone might have more memory than 2.147483647 gb of memory. I know a guy who has 20gb of ram.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.