I'm interested in what is this '...' expression in some codes, for example:
public static void main(String... args){
//code here
}
This is valid (maybe lambda, i'm not sure).
I find it in Spring's Sort file too:
public Sort(Sort.Order... orders) {
this(Arrays.asList(orders));
}
Somebody can help me?