Java Literally Sucks
Sunday, May 4th, 2008I use Java at my day job and I find it frustratingly verbose and confining. One thing that particularly bothers me is that I can’t easily represent literals.
Java adopted C’s convention for arrays:
int[] x = {1,2,3}
which work fine if I want to use arrays; but I rarely use arrays because [...]