<<< The String class | Index | String Data Type, cont. >>> |
String variableName = value;
Statements that declare and initialize a string
String message1 = "Invalid data entry.";
String message2 = "";
String message3 = null;
message3 = message1 + "Please retry."
<<< The String class | Index | String Data Type, cont. >>> |