mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
test++
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import java.util.*;
|
||||
|
||||
public class Test {
|
||||
int field;
|
||||
int method() {
|
||||
return <selection>field</selection>;
|
||||
}
|
||||
}
|
||||
|
||||
public class Usage {
|
||||
int usage(Test[] tests) {
|
||||
int sum = 0;
|
||||
for(int i = 0; i < tests.length;) {
|
||||
sum += tests[i++].method();
|
||||
}
|
||||
List list = Arrays.asList(tests);
|
||||
for(int i = 0; i < list.size();) {
|
||||
sum += ((Test)list.get(i++)).method();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user