vote up 0 vote down star

What is the difference between a character array and string?

flag
1  
Please state your question as a question. – Daniel A. White Nov 5 at 13:19
3  
In which language and how many marks will the answer earn you? – Lazarus Nov 5 at 13:19
Java smells likely for this one. – jleedev Nov 5 at 13:21

4 Answers

vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
1  
In C, a character array with the last character as a 0 is typically referred to as a string even though there is no string type in C. These are also called zero terminated C strings. – David G Nov 5 at 14:03
vote up 0 vote down

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 5: You can assign it to a variable but you can't change the value of the number, i.e. 5 = 1; will not work) while the character array is just like any other array where you can change the content (for example, you can replace the first character of the array with something else with array[0] = ... which is not possible with a string).

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.

link|flag
The statement that "you get a reference for the character array backing the original string and the new object has some offsets..." may or may not be true depending on what language you are using, and even sometimes which runtime and/or version of the language. For example, the original Visual Basic did share string data this way but VB.NET doesn't. Each approach is optimal in different situations, so there is no one "right" answer, though it does seem like most new language implementations today choose not to share string data as described. – Ray Burns Nov 5 at 13:37
vote up 4 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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