What happens when we print object in java in depth ?
Motivation
understanding deeply what happens when we print object in java.
Background
we have a list of employee object and we are trying to print that
Example
empList.stream().forEach(e -> System.out.println(e));
here we are printing the object so w...
hashcodehub.hashnode.dev2 min read