vote up 2 vote down star
1

I have to admit in all my work with Java, I've never come across the need for a Java union (like the C union, not the SQL one) and I cannot find an answer here on SO. Admittedly, most of my work in Java has been at higher abstractions that bit-fiddling.

I have a integer which I'm setting individual bits for and I want to print out the equivalent IEEE754 single-precision float.

In C, I'd do something like:

union {
    int i;
    float f;
} x;
x.i = 0x27;
printf ("%f\n", x.f);

How do I do a similar thing in Java? Is it even possible to treat the same memory as two different data types in Java?

I did search on both SO and elsewhere for "java union" but it swamped me with SQL stuff - I couldn't find a way to do this.

flag

5 Answers

vote up 7 vote down check

I have a integer which I'm setting individual bits for and I want to print out the equivalent IEEE754 single-precision float.

Use intBitsToFloat() for that.

link|flag
Bang. That's what I was after. And I see the reverse is Float.floatToRawIntBits. Now I just need the Double/Long variant but I assume, if there is one, it'll be in the Double class. I'll go find that. Thanks heaps. – paxdiablo Aug 21 at 7:49
I'm still confused... what does this have to do with unions? – skaffman Aug 21 at 7:49
And +1 . – paxdiablo Aug 21 at 7:51
The connection with unions is that they allow multiple datatypes to exists in the same memory location, providing the ability to effectively convert from one type to another. Pax needed to do a similar thing with an int and a float and, coming from a C background, naturally fell to the union approach - but couldn't find how to do this in Java. Luckily for him, his particular scenario is dealt with by the standard libraries. – belugabob Aug 21 at 7:57
Yeah, my only other thought was to write the int to a file and read it back as a float. I was pretty certain there was a better way than that. Thanks, guys, SO proves its worth yet again. – paxdiablo Aug 21 at 8:00
show 2 more comments
vote up 2 vote down

If you are interested in accessing the bit-level representation of a float, java.lang.Double contains method to do this (doubleToLongBits etc.)

Union'ing between pointer types (or between pointers and their numeric represetantion) would open holes in the type system, so it is strictly impossible.

link|flag
1  
+1. and this finishes off my quest (I'll need this for double/long later on). Ta. – paxdiablo Aug 21 at 7:55
vote up 2 vote down

Java doesn't provide any way to treat a value as another value on raw bit level - no unions, nothing like reinterpret_cast. However, for your particular case of treating float as int and vice versa, you can use java.lang.Float.floatToIntBits and intBitsToFloat methods.

link|flag
+1 for the info, even though @MB just beat you to it. Thanks. – paxdiablo Aug 21 at 7:50
vote up 3 vote down

Some useful articles & faq to this subject are,

Union types in Java?

Substitutes for Missing C Constructs

link|flag
+1 for the info. – paxdiablo Aug 21 at 7:50
vote up 6 vote down

http://java.sun.com/developer/Books/shiftintojava/page1.html

The designers of the Java programming language chose to omit the union construct because there is a much better mechanism for defining a single data type capable of representing objects of various types: subtyping. A discriminated union is really just a pallid imitation of a class hierarchy.

Includes examples.

link|flag
Yes, but a class hierarchy is no good here. I want to be able to set it as one type and read it as another. A class hierarchy will force me to set it and read it as the same type. – paxdiablo Aug 21 at 7:42
+1 for very nice link – dfa Aug 21 at 7:44
Let's back up - is there a way to change one bit in a float? That's what I'm looking for. I want to be able to set (for example) bits 31, 27, 4, and 0 of the float to see what value that is. – paxdiablo Aug 21 at 7:44
int bits = Float.floatToIntBits(aFloat); /* use bitwise operators in the IEEE 754 bit vector */ aFloat = Float.intBitsToFloat(bits); – dfa Aug 21 at 7:46
Is the question about float manipulation or unions? The two seems to have nothing to do with each other. – skaffman Aug 21 at 7:48
show 3 more comments

Your Answer

Get an OpenID
or

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