I have found AtomicInteger, AtomicLong, but where is AtomicFloat (or AtomicDouble)? Maybe there is some trick?
|
|
|||||
|
|
The API docs for the
I'm not claiming it's a convenient solution, but that seems to be the explanation. I suppose you would probably want to wrap an I actually got around writing one. Here you go:
|
||||
|
|
|
You could perhaps use an |
|||||
|
|
Are you sure you need it?
Here is an explanation of the problems that atomic variables were designed to solve. |
|||||||
|
|
It would be horrible inefficient to implement (but it would be possible). Per se its senseless to speak from atomic datatypes, because operations on datatypes are atomic, not the datatypes itself (maybe you know it, but just want to clear this point). With all this object stuff it gets mixed up. You need them very often in OS to manage locks and semaphores, thats why many processors have atomic integer instructions. For floats they are usually not implemented, so they get implemented, by wrapping the float operation in a block protected by a semaphore (which is implemented with atomic ints). In high level java its no problem to make this locking for floats yourself (and you are right, they could have implemented it), but for efficiency you must implement them with the low level asm, so its very practical if you provide for the high level java folks some function that utilizes the low level asm instructions. In reality I saw very seldom applications where atomic float operations are useful. I came across them, but very rare and it was always possible to reformulate the problem that the concurrency did not happen on the float part. |
|||
|
|