I am profiling an application and noticed that 52% (195MB) of the memory is being used by char[] and 20% by String. This is a large project with a lot of dependencies and I've just seen it so I have a couple of related questions to help me get started:
Does String s = "some text" create a char[]?
I've noticed there's hundreds of String s = new String("some text") with no apparent reason. Is this the culprit?
new String("aa")or just"aa"? – Thilo Oct 25 '11 at 9:52