mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
13 lines
283 B
Java
13 lines
283 B
Java
import java.util.List;
|
|
|
|
class Test {
|
|
void foo(String[] a, List<String> b) {
|
|
for (int i = 0; i < a.length; i++) {
|
|
<selection>System.out.println("a:" + a[i]);</selection>
|
|
}
|
|
|
|
for (int i = 0; i < b.size(); i++) {
|
|
System.out.println("b:" + b.get(i));
|
|
}
|
|
}
|
|
} |