mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
19 lines
344 B
Java
19 lines
344 B
Java
import java.util.*;
|
|
|
|
class C {
|
|
{
|
|
Object[] array;
|
|
|
|
<selection>List l1 = null;
|
|
l1 = new ArrayList(Arrays.asList(array));</selection>
|
|
|
|
List l2 = null;
|
|
l2 = new ArrayList(Arrays.asList(getObjects()));
|
|
|
|
System.out.println("l1 = " + l1 + ", l2 = " + l2);
|
|
}
|
|
|
|
|
|
String[] getObjects() {
|
|
}
|
|
} |