Tuesday, January 31, 2006

Unexpected side-effect

Learning to new features of Java 5 I've discovered new way to call the main method. I know, I'm not first but it's nice to see things in consequences. From now on I'll abandon good but old
 static void main (String [] args) {...}
I'll start to use
static void main (String ... args){...}
instead. It's a sing of a new era established by Java 5 ...

No comments: