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