Is it considered a better practice to use and manipulate Reference types instead of primitive types in Java ?
We often see java programs mixing both of them, is it better to use only primitive types or only reference types ? Or mix them according to the needs and what are the criteria to choose between a primitive or reference type ?
Thanks