Atom Feed SITE FEED   ADD TO GOOGLE READER

Empty array, comma

Pop Quiz
What does the following program print?

public class FunkyArray {
public static void main(String[] args) {
System.out.println(new Object[] { , }.length);
}
}
As it has to : "0" ... Quite logical in fact.