Lesson A10
Next: The String ClassLesson Overview: Strings are needed in many programming tasks. Much of the information that identifies a person must be stored as a string: name, address, city, social security number, etc. This lesson covers the specifications of the String class and how to use it to solve string-processing problems.
The String method that returns a char in the String at a specified index.
A String method that compares a specified String to the current String.
Adding two Strings together using the + operator.
A String method that compares the content of two Strings to see if they are equivalent.
An object with no references to it.
A Java process that removes inaccessible objects from memory.
An object that cannot be changed.
A String method that returns the length in characters of the String.
A Scanner method that returns a String ending when the Scanner object reaches a newline character.
A Scanner method that returns a String ending when the Scanner object reaches whitespace.
A class that holds a group of characters.
Defines that an identifier points to no value.
A String method that returns a designated portion of a String.
Hard-coded characters enclosed within double quotation marks, representing a String.
A method that returns the String equivalent of any object.
A String method that returns the String without any capital letters.
A String method that returns the String without any lower case letters.
When two reference variables reference the same object, they are called aliases.