What is the difference between CharSequence[] and String[]?
|
feedback
|
|
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 | ||||
|
feedback
|
|
In addition,
comparisons between these three using And EDIT: The practical upshot of this is to compare | |||
|
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. | |||
|
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/ | |||||
feedback
|
Stringis aclass,CharSequenceis aninterface(thatStringand a few others implement).CharSequence[]is more flexible. That said, Item 25: Prefer lists to arrays. – polygenelubricants Aug 30 '10 at 16:20