CS202 Java-101
Reference Types: A Review
  
   title
   book
 
String  title ;
String  book ;
title = “Problem Solving”;
book = title ;
2003
“Problem Solving”
 Memory Location 2003
2003
l A variable of reference type stores the address
   of the location where the object can be found.