Does Java pass arguments by value or reference?

Answers were Sorted based on User's Feedback



Does Java pass arguments by value or reference?..

Answer / prs01

Pass by value.
1. When passing primitives, it passes a copy of the
variable to the method. Any change made in the method does
not reflect in the calling method.
2. When dealing with objects, a copy of their
reference/address is passed. Thus the change made to the
object is reflected in the calling method.

Is This Answer Correct ?    22 Yes 4 No

Does Java pass arguments by value or reference?..

Answer / sujini

java pass arguments only pass by value

Is This Answer Correct ?    4 Yes 1 No

Does Java pass arguments by value or reference?..

Answer / mr.h

In Java no matter what type of argument you
pass the corresponding parameter (primitive variable or object reference) will get a copy of that data, which is
exactly how pass-by-value (i.e. copy-by-value) work.

In Java, if a calling method passes a reference of an object as an argument to the called method then the passedin
reference gets copied first and then passed to the called method. Both the original reference that was
passed-in and the copied reference will be pointing to the same object. So no matter which reference you use, you
will be always modifying the same original object, which is how the pass-by-reference works as well

Is This Answer Correct ?    0 Yes 0 No

Does Java pass arguments by value or reference?..

Answer / roshni

yes by both

Is This Answer Correct ?    4 Yes 11 No

Does Java pass arguments by value or reference?..

Answer / vamsi krishna.i

Java Always takes arguments by reference Only.

Is This Answer Correct ?    0 Yes 7 No

Post New Answer

More Advanced Java Interview Questions

Why are my checkboxes not being set from on to off?

0 Answers  


What are JTA/JTS and how they used by client?

0 Answers  


What is the use of Class.forName

20 Answers   HCL,


What is scalable, portability in the view of J2EE?

0 Answers  


What are externizable interface?

0 Answers  






How will the struts know which action class to call when you submit a form?

6 Answers   HeadStrong,


What is the need of serialize?

2 Answers   Wipro,


What is ripple effect?

0 Answers  


Can constructors be synchronized in java?

0 Answers  


What is a compilation unit?

1 Answers  


how to use debug in my elipse to solve problems that exist in my project

0 Answers   SAP Labs, TCS,


What is the purpose of the notify() method?

0 Answers  


Categories