Java- explanation of string class
Answers
Answered by
4
The String class represents character strings. All string literals in Java programs, such as "abc" , are implemented as instances of this class. Strings are constant; their values cannot be changed after they are created.
Answered by
3
String class in Java. Set 1. Stringis a sequence of characters. Injava, objects of String are immutable which means a constant and cannot be changed once created.
Similar questions