What is the difference between CharSequence[] and String[]?

link|improve this question

20% accept rate
You might want to add a java tag. Or someone with enough rep can do it. – codinguser Aug 30 '10 at 13:19
See Effective Java 2nd Edition, Item 52: Refer to objects by their interfaces. String is a class, CharSequence is an interface (that String and a few others implement). CharSequence[] is more flexible. That said, Item 25: Prefer lists to arrays. – polygenelubricants Aug 30 '10 at 16:20
feedback

4 Answers

String implements the CharSequence interface. CharSequence is implemented by String, but also CharBuffer, Segment, StringBuffer, StringBuilder.

So a String[] and a CharSequence[] is essentially the same. But CharSequence is the abstraction, and String is the implementation.

By the way, '[]' denotes an array of objects. So String[] is an array of strings. And String itself is an array of characters.

link|improve this answer
feedback

CharSequence represents an interface to a sequence of characters, with operations common to all classes implementing it. However, in particular, CharSequence does not make any guarantees about whether the sequence is mutable or not. So, you can have an immutable implementing class, like String or mutable ones, like StringBuilder and StringBuffer.

In addition, CharSequence does not refine the general purpose implementations of the equals() or hashCode() methods, so there is no guarantee that objects of different classes implementing CharSequence will compare to be equal even if the underlying sequence that they hold is the same. So, given:

String seq1 = "hello";
StringBuilder seq2 = new StringBuilder("hello");
StringBuffer seq3 = new StringBuffer("hello");

comparisons between these three using .equals() return false on Java 1.6, but I can't find any guarantees that this will not change in the future (though it's probably fairly unlikely).

And CharSequence[] and String[] are just arrays of their respective types.

EDIT: The practical upshot of this is to compare CharSequences for equality, you have to use their toString() method and compare the resultant Strings, since this is guaranteed to return true if the underlying sequences are the same.

link|improve this answer
+1 for the nice explanation – Nammari May 5 at 18:49
feedback

A CharSequence is an Interface. String is an immutable sequence of characters and implements the CharSequence interface. CharSequence[] and String[] are just arrays of CharSequence and String respectively.

This means wherever you see CharSequence, you can pass a String object.

link|improve this answer
feedback

CharSequence represents an ordered set of characters, and defines methods for examining this character set. It is ineterface, and one implementation of this interface is String class.

Please refer to Java API documentation for further info. Also, this tutorial might help you: http://download.oracle.com/javase/tutorial/

link|improve this answer
2  
An "ordered set of characters" would imply that the same character cannot occur twice. – Michael Borgwardt Aug 30 '10 at 13:45
feedback

Your Answer

 
or
required, but never shown

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