Java / Constructor
What are pass by reference and pass by value?
When an object is passed by value, an exact copy of the object is passed. Thus, if changes are made to that object, it doesn't affect the original object.
When an object is passed by reference, the actual object is not passed, instead a reference of the object is passed. Any changes made by the external method, affects the original object.
More Related questions...