String Class
Package: java.lang
In Java, strings are reference types based on the String class, not value types like int or boolean. As a result, a string variable holds a reference to an object created from the String class, not the value of the string itself.
Java lets you create strings as if they were primitive types, by assigning a string literal to a String variable, like this:
String greeting = “Hello, World!”;
Note that in Java, a String object is immutable, which means that it can’t be changed. Thus, none of the methods of the String class actually changes the value of a String object. Instead, they manipulate the value of the String object and return a new String object that is a variation of the original string.
Constructors
|
Method |
Description |
|
|
Creates a new empty string. |
|
|
Creates a new |
|
|
Creates a new |
Methods
|
Method |
Description |
|
|
Returns the character at the specified position in the string. |
|
|
Compares this string with another string, using alphabetical order. Returns |
|
|
Similar to |
|
|
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access