A string is a piece of text, that is zero or more characters in length. In Java, strings are considered to be pre-built objects. The variable for a string does not store the value of the string, rather it is a reference point, or pointer, to the storage location of where the string is kept. Declaring a String: Java Code: String s1; Assigning a Value On Declaration: Java Code: String s1 = "Hello World!"; Assigning ...
String s1;
String s1 = "Hello World!";
Updated 10-18-2012 at 01:29 AM by penguinCoder