mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
32 lines
445 B
Java
32 lines
445 B
Java
public class ArrayStore2
|
|
{
|
|
public static void main(String[] args)
|
|
{
|
|
new ArrayStore2().a(new Object[2], 3);
|
|
}
|
|
|
|
void a(Object[] oa, int i)
|
|
{
|
|
try
|
|
{
|
|
oa[index()] = obj();
|
|
}
|
|
catch (Exception x)
|
|
{
|
|
System.out.println (x.getClass().getName());
|
|
}
|
|
}
|
|
|
|
int index()
|
|
{
|
|
System.out.println ("index");
|
|
return 3;
|
|
}
|
|
|
|
Object obj()
|
|
{
|
|
System.out.println ("rhs");
|
|
return new Object();
|
|
}
|
|
}
|