Is Java pass by value or pass by reference?
Java is strictly pass-by-value. However, for objects/arrays, the 'value' passed is the memory reference, which allows the object's contents to be modified.
Verify This Answer
Cross-check this information using these trusted sources:
More FAQs in Pass by Value vs Pass by Reference Explained
Pass by Value means a copy of the variable's data is passed to the function. Modifications inside the function do not affect the original variable.
Pass by Reference means the memory address of the variable is passed. Modifications inside the function will alter the original variable's data.
Because integers are primitives. Java passes a copy of the primitive value, so the original variable remains untouched.
Still have questions?
Browse all our FAQs or reach out to our support team
