What is the difference between a character array and string?
|
|
|||||||||||
|
|
|
String is a class whose objects can be created and initialised by formaly calling the constructor or by direct assignment. 1) String s = new String("abc"); 2) String s = "sachin"; Whereas character array is the contigeous storage in memory were characters are stored sequentially. |
||
|
|
|
|
A character array is just that, an array of characters. Nothing more nothing less, depending on your language this may be referred to as a string. A string on the other hand in object-oriented terms is a class that abstracts the concept of a character array. This means you can think about your text as a collection of words rather then as an array of characters. |
||||
|
|
|
A String is a character array with convenience methods to manipulate the array (searching, substring, pattern matching). In many languages (Java, for example), the String is immutable (just like the number This allows the language compiler to make some optimizations when working with strings. For example, when you ask for a substring, then you get a reference for the character array backing the original string and the new object has some offsets to give you the illusion that it's a new string. |
||
|
|
|
Well, a string is a class which encapsulates behavior suitable for strings, such as Substring, Trim etc. The actual data is stored internally as a character array (at least in Java and C#), so there is a close connection between them, but the class itself represents more than just the characters. There's more to it, in fact, such as internalization, but that's the gist of it. |
||
|
|
