Of course the Unsafe class is undocumented, but I am interested in hearing of some situations where you used the Unsafe class to your advantage.
|
examples
more on references here - http://bytescrolls.blogspot.com/2011/04/interesting-uses-of-sunmiscunsafe.html |
|||||||||||||
|
|
Just from running a search in some code search engine I get the following examples:
There are many other examples, just follow the above link... |
|||
|
|
|
Based on a very brief analysis of the Java 1.6.12 library using eclipse for reference tracing, it seems as though every useful functionality of CAS operations are exposed through the Atomic* classes. Memory manipulations functions are exposed through DirectByteBuffer Sync instructions (park,unpark) are exposed through the AbstractQueuedSynchronizer which in turn is used by Lock implementations. |
||||
|
|
|
Unsafe.throwException - allows to throw checked exception without declaring them. This is useful in some cases where you deal with reflection or AOP. Assume you Build a generic proxy for a user defined Interface. And the user can specify which exception is thrown by the implmentation in a special case just by declaring the exception in the interface. Then this is the only way I know, to rise a checked exception in the Dynamic Implementation of the Interface.
|
|||
|
Interesting, I'd never even heard of this class (which is probably a good thing, really). One thing that jumps to mind is using Unsafe#setMemory to zeroize buffers that contained sensitive information at one point (passwords, keys, ...). You could even do this to fields of "immutable" objects (then again I suppose plain old reflection might do the trick here too). I'm no security expert though so take this with a grain of salt. |
|||||||||||||
|
|
|
|||||
|
|
For efficient memory copy (faster to copy than System.arraycopy() for short blocks at least); as used by Java LZF and Snappy codecs. They use 'getLong' and 'putLong', which are faster than doing copies byte-by-byte; especially efficient when copying things like 16/32/64 byte blocks. |
|||
|
|
One use of it is in |
|||
|
|
|
Haven't used it myself, but I suppose if you have a variable that is only occasionally read by more than one thread (so you don't really want to make it volatile) you could use the |
|||||||
|
|
XStream uses it for performance reasons, see Sun14ReflectionProvider |
|||||||
|
|
Off-heap collections may be useful for allocating huge amounts of memory and deallocating it immediately after use without GC interference. I wrote a library for working with off-heap arrays/lists based on |
|||
|
|