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

Write a java program to find out the sum of harmonic series : 1 + ½ + 1/3 + ……… up to nth term , for any value of n.

2 Answers  


What is the use of Semaphore?

3 Answers  


Do I have to use jsps with my application?

0 Answers  


What is synchronization and why is it important?

0 Answers  


iam writing the contents to a excel through I/O i am putting first statement as WRITE and then READ(from excel) immediately..later user complains that he is not getting the date by using READ ..wat could be the situation

3 Answers   iGate,






What are the thread-to-thread communcation?

1 Answers  


what is DGC?

1 Answers  


What is Introspection?

2 Answers  


What is the difference between Super and This Keyword?

4 Answers   HCL, TCS,


What happens when a thread cannot acquire a lock on an object?

0 Answers  


What is runnable?

2 Answers  


What is the relationship between an event-listener interface and an event-adapter class?

0 Answers  


Categories