I know that a C string abc would internally be abc\0 in C, is it the same case with Java?
|
|
|
Nope, C strings are an array of chars and thus there is no length associated with them. The side affect of this decision is that to determine a string's length, one must iterate through it to find the Java strings have a char array for their chars and carry an offset length and a string length. This means determining a string's length is rather efficient. |
|||||||||||||||||||
|
|
No, it's not the same in Java. There's no null terminator. Java strings are objects, not points to arrays of characters. It maintains the length along with the Unicode characters, so there's no need to look for a null terminator. You don't have to ask here: look at the source for String.java in the src.zip that ships with your JDK. Here's the start of it:
|
|||||||||
|
|
String in C language is an array of char type where as in Java it a class and it represents collection of unicode chars. |
|||
|
|
|
No. Null terminators are used in C because it's easier than passing around a pointer and a size. In Java, the size is always known and so a null terminator isn't necessary. Furthermore, there are no terminating characters in Java (putting in a |
|||
|
|
|
Java strings are not null-terminated like C strings. This is because Java stores strings' lengths. You can retrieve the length with |
|||
|
|
|
Class The OpenJDK 7 It also has two static fields, a version ID for serialization purposes and an |
|||||
|
|
As far as I know, in java String is stored as an object in the heap section as a sub-class of Object. There is no need to use '\0' to specify just characters or String. |
|||
|
|