Initializes a newly created String object so that it represents an empty character sequence.
()
| 62 | * Initializes a newly created String object so that it represents an empty character sequence. |
| 63 | */ |
| 64 | public String(){ |
| 65 | value = ZERO_CHAR; |
| 66 | offset = 0; |
| 67 | count = 0; |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Construct a new String by converting the specified array of bytes using the platform's default character encoding. The length of the new String is a function of the encoding, and hence may not be equal to the length of the byte array. |
nothing calls this directly
no test coverage detected