
A primitive variable “holds” directly his value itself. Examples of a primitive variable : int i, long l;
A reference variable “holds” the reference (4 bytes on 32-bit JVMs, 8 bytes on 64-bit JVMs) who refers to an object. Examples of a reference variable : Student s, Date d;
local variable...