ArrayList list = new ArrayList();
list.add("somethingold");
list.add(3);
list.add("somethingnew");
list.add(5);
數組列表現在,如果我打印的清單輸出將是這樣的:
[somethingold, 3, somethingnew, 5 ]
在這裏,我想只取整數元素。
我想要的輸出,如果它是一個整數把它放在其他列表中,否則在另一個列表中。
這就是我想要的:
[3,5]
[somethingold, somethingnew]
一個壞主意。請使用兩個列表,並使用泛型使其更安全。 – Kayaman
你可以去這個http://docs.oracle.com/javase/tutorial/extra/generics/index.html –
或者一個'List'。 String和Integer之間的關係是什麼?他們是否必須進入同一個名單? –
Thilo