The method is public static void method(Object[] params), how should I call it in the following scenarios?
- with one object as parameter
ClassA a - with more than one objects as parameters
ClassA a,ClassB b,ClassC c? thank you
|
The method is
|
||||
|
|
|
You can create the array of objects on the fly:
Another suggestion is that you change the signature of the method so that it uses java varargs:
Nice thing is that it is compiled into a method with the same signature as above |
||||
|