JAVA based learning - the concept of reference

  Reference concept: 
If a variable represents an array, such as a, we have a known reference 
to the different basic types 
int c = 5; c is called to assign to 5 
declare a reference to int [] a; 
a = new new int [5]; 
let a reference to this, points to an array

Guess you like

Origin www.cnblogs.com/leemlzm/p/12044471.html