vote up 6 vote down star
2

I have been programming in Java since 2004, mostly enterprise and web applications. But I have never used short or byte, other than a toy program just to know how these types work. Even in a for loop of 100 times, we usually go with int. And I don't remember if I have ever came across any code which made use of byte or short, other than some public APIs and frameworks.

Yes I know, you can use a short or byte to save memory in large arrays, in situations where the memory savings actually matters. Does anyone care to practice that? Or its just something in the books.

[Edited]

Using byte arrays for network programming and socket communication is a quite common usage. Thanks, Darren, to point that out. Now how about short? Ryan, gave an excellent example. Thanks, Ryan.

flag

12 Answers

vote up 4 vote down check

Keep in mind that Java is also used on mobile devices, where memory is much more limited.

link|flag
A good point, I must say. I totally missed that. I haven't done any real app for mobiles, actually. Just tried J2ME for fun. – Vinegar Dec 31 '08 at 3:50
vote up 8 vote down

I use byte a lot. Usually in the form of byte arrays or ByteBuffer, for network communications of binary data.

I rarely use float or double, and I don't think I've ever used short.

link|flag
O yeah, I think even I did it a lot of times when it comes to network programming or socket communication. Otherwise, no. Its good, you remind me that. – Vinegar Dec 31 '08 at 4:03
vote up 3 vote down

I used 'byte' a lot, in C/C++ code implementing functionality like image compression (i.e. running a compression algorithm over each byte of a black-and-white bitmap), and processing binary network messages (by interpreting the bytes in the message).

However I have virtually never used 'float' or 'double'.

link|flag
Ahan.. May be because of the domain you are working in. Similar might be true for me. – Vinegar Dec 31 '08 at 3:58
vote up 2 vote down

The primary usage I've seen for them is while processing data with an unknown structure or even no real structure. Network programming is an example of the former (whoever is sending the data knows what it means but you might not), something like image compression of 256-color (or grayscale) images is an example of the latter.

Off the top of my head grep comes to mind as another use, as does any sort of file copy. (Sure, the OS will do it--but sometimes that's not good enough.)

link|flag
vote up 2 vote down

The Java language itself makes it unreasonably difficult to use the byte or short types. Whenever you perform any operation on a byte or short value, Java promotes it to an int first, and the result of the operation is returned as an int. Also, they're signed, and there are no unsigned equivalents, which is another frequent source of frustration.

So you end up using byte a lot because it's still the basic building block of all things cyber, but the short type might as well not exist.

link|flag
Agree. int literals are easier to program with ( loops, counters etc ) however for specific functionality as mentioned by others those types are very handy. – Oscar Reyes Dec 31 '08 at 5:59
vote up 2 vote down

when we are programming for electronic devices like mobile phone we use byte and short.In this case we should take care on memory management.

link|flag
vote up 1 vote down

Until today I haven't notice how seldom I use them.

I've use byte for network related stuff, but most of the times they were for my own tools/learning. In work projects these things are handled by frameworks ( JSP for instance )

Short? almost never.

Long? Neither.

My preferred integer literals are always int, for loops, counters, etc.

When data comes from another place ( a database for instance ) I use the proper type, but for literals I use always int.

link|flag
For databases, I usually go for wrappers. Yes, because of well-known null. – Vinegar Dec 31 '08 at 6:36
mmhh I have a mixed feeling about wrappers. Fortunately with java 1.5 most of the time it is transparent after autoboximg – Oscar Reyes Dec 31 '08 at 15:24
vote up 1 vote down

It's perhaps more interesting to look at the semantics of int. Are those arbitrary limits and silent truncation what you want? For application-level code really wants arbitrary sized integers, it's just that Java has no way of expressing those reasonably.

link|flag
vote up 1 vote down

I use bytes in lots of different places, mostly involving low-level data processing. Unfortunately, the designers of the Java language made bytes signed. I can't think of any situation in which having negative byte values has been useful. Having a 0-255 range would have been much more helpful.

I don't think I've ever used shorts in any proper code. I also never use floats (if I need floating point values, I always use double).

I agree with Tom. Ideally, in high-level languages we shouldn't be concerned with the underlying machine representations. We should be able to define our own ranges or use arbitrary precision numbers.

link|flag
vote up 0 vote down

I have used bytes when saving State while doing model checking. In that application the space savings are worth the extra work. Otherwise I never use them.

link|flag
vote up 0 vote down

I found I was using byte variables when doing some low-level image processing. The .Net GDI+ draw routines were really slow so I hand-rolled my own.

Most times, though, I stick with signed integers unless I am forced to use something larger, given the problem constraints. Any sort of physics modeling I do usually requires floats or doubles, even if I don't need the precision.

link|flag
vote up 0 vote down

Apache POI was using short quite a few times. Probably because of Excel's row/column number limitation.

A few months ago they changed to int replacing

createCell(short columnIndex)

with

createCell(int column).

link|flag

Your Answer

Get an OpenID
or

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