Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
9  
Why would equals() be slow for you? – BoltClock Sep 27 '10 at 16:01
6  
Have you profiled your app, and was the conclusion that the hotspot in your code was caused by String.equals(...)? If you haven't profiled your app, why do you think String.equals(...) is (or could be) a problem? – Bart Kiers Sep 27 '10 at 16:04
2  
His question does not state that equals is slow. Just wondering if there is something faster than equals(). – Sagar Sep 27 '10 at 16:05
1  
his question does state that equals is slow (or at least that it's not fast) when he says 'or something faster than equals' – KevinDTimm Sep 27 '10 at 16:21
1  
Agreed - as it stands, this is a bad question. If you want something faster than equals(), 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
show 7 more comments

6 Answers

up vote 12 down vote accepted

I don't expect that Sun Oracle hasn't already optimized the standard String#equals() to the max. So, I expect it to be already the quickest way. Peek a bit round in its source if you want to learn how they implemented it. Here's an extract:

public boolean equals(Object anObject) {
    if (this == anObject) {
        return true;
    }
    if (anObject instanceof String) {
        String anotherString = (String)anObject;
        int n = count;
        if (n == anotherString.count) {
            char v1[] = value;
            char v2[] = anotherString.value;
            int i = offset;
            int j = anotherString.offset;
            while (n-- != 0) {
                if (v1[i++] != v2[j++])
                    return false;
            }
            return true;
        }
    }
    return false;
}
share|improve this answer
5  
Just curious, is that a real parrot on your hat? – NullUserException Sep 27 '10 at 16:11
@Null: Yes, it's a genuine Amazon Parrot. He was just about 3 months old (young) there at the picture. He's somewhat larger right now. His name is Chichiray. A very cool bird :) – BalusC Sep 27 '10 at 16:13
Pretty interesting. – Jigar Joshi Sep 27 '10 at 16:24
@org: The parrot or my answer? :) – BalusC Sep 27 '10 at 16:25
Chichiray ....... :) – Jigar Joshi Sep 27 '10 at 16:27
show 5 more comments

It depends what you need. I think equals() is really optimized but perhaps you need something else faster than equals(). Take a look at this post.

share|improve this answer

If you can show that it's a significant bottleneck, which would surprise me, you could try

s1.hashCode() == s2.hashCode() && s1.equals(s2)

It might be a bit faster. It mightn't.

share|improve this answer
This was my first idea, too. Since string are immutual (is this really spelled right?) you're basically comparing constant ints here, which should be fast. Could be a problem only if the objects are equal most of the time, you could dynamically swap the implementation then. Too sad I don't have the jdk on this machine, would love to profile that now. – atamanroman Sep 28 '10 at 8:35
it's "immutable" :) – KevinDTimm Sep 29 '10 at 1:26
Yes, it is faster. But you need to do a null check before. – Stephan Mar 24 '12 at 9:38
I doubt that would be faster unless you cache hashcode in some way. I think equals is faster than computing a hash code. – jontro Apr 16 at 10:23

As always, you will need to benchmark for your application / environment. And unless you have already profiled and idetified this as a performance bottleneck, it's probably not going to matter ("premature optimization is the root of all evil").

Having said that:

a.equals(b) is really fast for Strings. It's probably one of the most tightly optimized pieces of code in the Java platform. I'd be very surprised if you can find any faster way of comparing two arbitrary strings.

There are special cases where you can cheat and use (a==b) safely, e.g. if you know that both Strings are interned (and therefore value identity implies object identity). In that case it may be slightly faster than a.equals(b) - but again this depends on compiler/JVM implementation. And it's very easy to shoot yourself in the foot if you don't know what you are doing.....

share|improve this answer
p.s. I have just micro-benchmarked this, and (a==b) does beat a.equals(b) by a factor of about 2-4 times (30ns vs. 70-110ns) in my environment (Eclipse on Sun Java 1.6). YMMV, and usual caveats about micro-benchmarking do of course apply :-) – mikera Sep 27 '10 at 16:39
Looking at the implementation code posted by @BalusC, I can see absolutely no heavy optimizations, nothing at all to warrant your statement. Granted, optimizing this already trivial code isn’t easy. But low-level, what could have been done to optimize is to move from char-wise to int-wise comparison (obviously this requires low-level tricks not readily available in Java, and it might not be faster after all). – Konrad Rudolph Sep 27 '10 at 17:00
Hmmm It looks extremely tightly optimized to me, to the extent that e.g. they are re-using the string length as a negative loop counter (which is a classic low-level optimization). I can't see personally see any additional optimization that could be made, short of abandoning pure Java and dropping to a specialized native implementation (and it's possible that the JIT does this anyway....) – mikera Sep 27 '10 at 18:11
You can use equals() and intern strings safely. The equals() method does check for identity. – Stephan Mar 24 '12 at 9:16

Compare Strings of same length faster using the hashcode:

public static boolean equals(final String s1, final String s2) {
return s1 != null && s2 != null && s1.hashCode() == s2.hashCode()
    && s1.equals(s2);
}

You can test it, my results are for 4000000 compare operations including identical, equal and different strings:

String.equals(String):  177081939
equals(String, String):  44153608
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.