CS202 Java-58
Local Data
lLocal data is specific to a given call of a method.
lMemory for this data is allocated when the method is called and deallocated when the method returns.   
l
l
l public int compareTo(Name otherName)
l   {
l     int result;    // Local variable
l     . . .
l     return  result;
l }
l
l