3
votes
5answers
206 views

Using 'new' in a projection?

I wish to project a collection from one type (Something) to another type (SomethingElse). Yes, this is a very open-eneded question, but which of the two options below do you prefer? Creating a new ...
61
votes
10answers
3k views

Never use Strings in Java?

I stumbled upon a blog entry discouraging the use of Strings in Java for making your code to lack semantics, suggesting that you should use thin wrapper classes instead. This is the before and after ...