mirror of
https://github.com/2003scape/deep-c-rsc.git
synced 2024-03-22 05:49:51 -04:00
19 lines
273 B
Java
19 lines
273 B
Java
![]() |
|
||
|
public class Empty2
|
||
|
{
|
||
|
|
||
|
public static void main(String[] args)
|
||
|
{
|
||
|
new Empty2();
|
||
|
"".getClass().getName().charAt(0);
|
||
|
int[] a1 = { 1, 0 };
|
||
|
int[] a2 = new int[a1.length];
|
||
|
System.arraycopy(a1, 0, a2, 0, a1.length);
|
||
|
}
|
||
|
|
||
|
public void finalize()
|
||
|
{
|
||
|
new Object();
|
||
|
}
|
||
|
}
|