, :
ArrayList[] lists = new ArrayList[10];
lists[0] = new ArrayList();
List[] genericLists = lists;
lists[0].add("someObject");
String → Object, ArrayList → List . - , Java, . , , :
List[] lists = new List[10];
lists[0] = new ArrayList();
lists[0].add("someObject");
, , , , , , , . Object[], . - String[], Object[], , String[], .