Explain the following statement: Java is always pass-by-value.
Answers were Sorted based on User's Feedback
Other languages use pass-by-reference or pass-by-pointer.
But 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) works.
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 ? | 15 Yes | 2 No |
Answer / nagababu
Pass by Value function receives a copy of variable. The
function or the method can not change variable values.
Is This Answer Correct ? | 11 Yes | 2 No |
Answer / guest
yes java is always pass by value there is nothing pass by
reference in java
be sure while giving answer for this question
explain them with an example so that they can satisfied with
your answer
Is This Answer Correct ? | 2 Yes | 6 No |
Define connection pooling?
What is java secure socket extension (jsse)?
What is java 2 platform, standard edition (j2se)?
What is DDP?
What is callback methods Component methods called by the container to notify the component of important events in its life cycle?
Why is j2ee needed?
Is j2ee a programming language?
What are the modules of j2ee?
What is the difference between sendRedirect() and forward()? in what situations do we have to use send redirect() instead of forward().
13 Answers Honeywell, Mind Tree, Samsung, Wipro,
What is element?
What is java ee architecture?
What is the difference between session bean and entity bean ?