Can you have a negative string length? If so, is it the same as null?
|
|
No; the length of a string is 0 (empty string, represented as To better understand what null means in Java, you could check out these questions: |
||||
|
|
|
No, never. length is unsigned number, it can't be negative. the first question's answer negates the second question's legitimacy. |
|||
|
|
|
No. String length is any positive integer, or zero. Null is not equal to zero, nor is null equal to any negative value. |
|||
|
|
|
The javadoc doesn't state that the return value can be less than zero, but that the method returns the number of characters in the string. |
|||
|
|
|
i don't think so except if you deliberately chose to use an offset (like -1) Otherwise No, any empty string is of length 0 |
|||
|
|
|
You cannot construct a valid String with a negative length. However to answer you question in more depth, the length() method is
and you can use reflection to change the |
|||
|
|