01: package test6;
02:
03: public class CCTest6b {
04:
05: public static void main(String[] args) {
06: CCTest6b t = new CCTest6b();
07:
08: }
09:
10: public void test(String permanent, String... variable) {
11: }
12:
13: public void test(int permanent, String... variable) {
14: }
15:
16: public void test(String permanent1, String permanent2) {
17: }
18:
19: }
|