Lib.tests.source.ArrayTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of krakatau-lib Show documentation
Show all versions of krakatau-lib Show documentation
Assembler, disassebmler, decompiler and compiler tools library for Java.
import java.io.Serializable;
import java.util.Arrays;
public class ArrayTest {
public static void main(String args[]){
Object[] x = new Cloneable[4][];
Serializable[][] y = new Serializable[4][2];
y[3] = args;
x[1] = y;
y[2][1] = x;
System.out.println(Arrays.deepToString(x));
System.out.println(Arrays.deepToString(y));
y[3][0] = x;
long[] z = new long[1];
z[0] = (long)-(int)z[~+~0];
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy