How do declare and use parameters in java when not knowing the number and type of paramenters that will be passed...
I want to declare a method something like...
static void method1( ... ) for ( i: parameters ) print( i )
// or
static void method1( int a, ... ) for ( f=a; f < parameters.count(); f++) print( parameters[ i] );
Any ideas ?