Is there a perceptable difference between using String.Format and string concatenation in Java?
I tend to use String.format but occasionally will slip and use a concat, I was wondering if one was better than the other.
The way I see it String.Format gives you more power in "formatting" the string and concatenation means you don't have to worry about accidentally putting in an extra %s or missing one out.
String.format is also shorter.
Which one is more readable depends on how your head works.