June 2014
Beginner
810 pages
23h 28m
English
CHAPTER 11
![]()
Strings
In this chapter, you will learn:
What is a String?
A sequence of zero or more characters is known as a string. In Java programs, a string is represented by an object of the java.lang.String class. The String class is immutable. That is, the contents of a String object cannot be modified after it has been created. The String class has two companion classes, java.lang.StringBuilder and java.lang.StringBuffer ...