Skip to content

Instantly share code, notes, and snippets.

@zhugw
zhugw / UnsafeTest.java
Created May 8, 2017 13:36 — forked from raphw/UnsafeTest.java
A demonstration of sun.misc.Unsafe
import org.junit.Before;
import org.junit.Test;
import sun.misc.Unsafe;
import sun.reflect.ReflectionFactory;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import static org.junit.Assert.assertEquals;