What's the quickest to compare two strings in Java?
Is there something faster than equals?
EDIT: I can not help much to clarify the problem.
I have two String which are sorted alphabetically and EXACTLY the same size
Example: abbcee and abcdee
Strings can be long up to 30 characters
equals()be slow for you? – BoltClock♦ Sep 27 '10 at 16:01String.equals(...)? If you haven't profiled your app, why do you thinkString.equals(...)is (or could be) a problem? – Bart Kiers Sep 27 '10 at 16:04equals(), then either you have some very specific performance requirements backed by measurements (in which case these must be posted before any appropriate answers can be given), or you actually don't (have unusual performance requirements), in which case you should just use equals(). Implying "equals isn't fast enough" without any justification gives people nothing to work with. – Andrzej Doyle Sep 27 '10 at 16:55