Skip to content

Instantly share code, notes, and snippets.

@luksrn
Last active February 18, 2017 00:27
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save luksrn/4e912a4dfec66bbede900f1682b59880 to your computer and use it in GitHub Desktop.
java-modular-9-parte-01-theUnsafe
Field f = Unsafe.class.getDeclaredField("theUnsafe");
f.setAccessible(true);
Unsafe unsafe = (Unsafe) f.get(null);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment