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