Doctor J wrote:
> I want to write an interface that expresses the following idea: "classes 
> implementing this interface must have a void function named update, with a 
> fixed but indeterminate number of parameters of the same (template parameter) 
> type." 

Use a typesafe variadic function, i.e.

void test(int[] integers...);

Reply via email to