mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-13 03:29:50 +00:00
20 lines
324 B
Java
20 lines
324 B
Java
|
public class G19990303_01
|
||
|
{
|
||
|
public static void main (String[] args)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
Object[] ar = new String[3];
|
||
|
String[] as = new String[3];
|
||
|
System.out.println("1");
|
||
|
ar[0] = as;
|
||
|
System.out.println("2");
|
||
|
}
|
||
|
catch (Exception _)
|
||
|
{
|
||
|
System.out.println("X");
|
||
|
}
|
||
|
System.out.println("3");
|
||
|
}
|
||
|
}
|