mirror of
https://github.com/corda/corda.git
synced 2025-01-06 05:04:20 +00:00
93 lines
1.5 KiB
Java
93 lines
1.5 KiB
Java
public class GC {
|
|
|
|
private static void small() {
|
|
for (int i = 0; i < 1024; ++i) {
|
|
byte[] a = new byte[4 * 1024];
|
|
}
|
|
}
|
|
|
|
private static void medium() {
|
|
for (int i = 0; i < 8; ++i) {
|
|
Object[] array = new Object[32];
|
|
for (int j = 0; j < 32; ++j) {
|
|
array[j] = new byte[32 * 1024];
|
|
}
|
|
}
|
|
}
|
|
|
|
private static void large() {
|
|
for (int i = 0; i < 8; ++i) {
|
|
byte[] a = new byte[16 * 1024 * 1024];
|
|
}
|
|
|
|
for (int i = 0; i < 8; ++i) {
|
|
byte[] a = new byte[16 * 1024 * 1024];
|
|
for (int j = 0; j < 32; ++j) {
|
|
byte[] b = new byte[32 * 1024];
|
|
}
|
|
}
|
|
}
|
|
|
|
private static void lifetime1(boolean predicate) {
|
|
if (predicate) {
|
|
Object a = null;
|
|
}
|
|
|
|
small();
|
|
}
|
|
|
|
private static void lifetime2(boolean predicate) {
|
|
if (predicate) {
|
|
int a = 42;
|
|
} else {
|
|
Object a = null;
|
|
}
|
|
|
|
small();
|
|
}
|
|
|
|
private static void lifetime3(boolean predicate) {
|
|
int i = 2;
|
|
if (predicate) {
|
|
Object a = null;
|
|
} else {
|
|
Object a = null;
|
|
}
|
|
|
|
do {
|
|
small();
|
|
int a = 42;
|
|
-- i;
|
|
} while (i >= 0);
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
Object[] array = new Object[1024 * 1024];
|
|
array[0] = new Object();
|
|
|
|
small();
|
|
|
|
array[1] = new Object();
|
|
|
|
medium();
|
|
|
|
array[2] = new Object();
|
|
|
|
large();
|
|
|
|
array[0].toString();
|
|
array[1].toString();
|
|
array[2].toString();
|
|
|
|
lifetime1(true);
|
|
lifetime1(false);
|
|
|
|
lifetime2(true);
|
|
lifetime2(false);
|
|
|
|
lifetime3(true);
|
|
lifetime3(false);
|
|
}
|
|
|
|
}
|