01: package test6;
02:
03: public class CCTest6i {
04:
05: public static void main(String[] args) {
06: CCTest6 t = new CCTest6();
07:
08: }
09:
10: public void test(String permanent, String... variable) {
11: permanent.indexOf("Hello"); //Check the methods provided after the first dot.
12:
13: int dummy = variable.length; //Check that after the dot the CC is equal to CC content for an array.
14:
15: variable[0].indexOf("Hello"); //Check the CC after the dot. It should match the CC for String.
16: }
17: }
|