mirror of
https://github.com/corda/corda.git
synced 2025-01-28 23:24:29 +00:00
17 lines
319 B
Java
17 lines
319 B
Java
public class Test {
|
|
|
|
public static void main(String[] args) {
|
|
for (int i = 0; i < 1024; ++i) {
|
|
byte[] a = new byte[4 * 1024];
|
|
}
|
|
|
|
for (int i = 0; i < 1024; ++i) {
|
|
Object[] array = new Object[32];
|
|
for (int j = 0; j < 32; ++j) {
|
|
array[j] = new byte[32 * 1024];
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|