|
SummaryThe String class is definitely worth your time and attention due to its frequency of use while programming. The key points to remember about Strings are that they are immutable objects. To improve efficiency, a string pool for each class is created. Variables that reference the same string literal actually point to the same object in the String pool.
|