The Unsafe
class allows a program to do things that are not allowed by the Java compiler. Normal programs should avoid using Unsafe
.
WARNINGS
If you make a mistake using the Unsafe
APIs, your applications are liable to cause the JVM to crash and/or exhibit symptoms that are hard to diagnose.
The Unsafe
API is subject to change without notice. If you use it in your code, you may need to rewrite the code when changing Java versions.