Hacker News new | ask | show | jobs
by soberhoff 2911 days ago
I once sped up a program by 90% by turning `new String("foo")` into just `"foo"`. The project was still rotten though, so it ultimately didn't matter.
1 comments

Your example sounds interesting, could you explain more
Are you familiar with Java? If you use just `"foo"`, then the string will be interned and reused. If you use `new String("foo")`, each call creates a new copy on the heap. This call was inside a very hot loop, thus eating almost all the application's runtime.
Thanks a lot for your explanation.