mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-18 07:15:51 +07:00
11 lines
204 B
Java
11 lines
204 B
Java
import java.util.ArrayList;
|
|
|
|
class B {
|
|
int method(ArrayList list) {
|
|
I[] a = (I[])list.toArray(new I[0]);
|
|
|
|
for(i = 0; i < a.length; i++) {
|
|
I member = a[i];
|
|
}
|
|
}
|
|
} |