Explain the following statement: Java is always pass-by-value.
Answer Posted / qamrun nisa
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 |
Post New Answer View All Answers
What is main method in java?
What is java developer?
What is javaserver pages standard tag library (jstl)?
What are the advantages in the use of spring for application development?
What is general entity?
Why is java called object oriented?
What is difference between java and core?
Define orm and its working in j2ee?
Describe orm?
for example we are login into the irctc server from there it will go to the selected bank and deduct amount and come back to the irctc. so if we are developing this in java means will it be run on the same session. but as per my knowledge bank is separate and irctc is separate URL's so it will use two different sessions then how it is maintaining same session through out application and even it uses the payment gateway? how it is working can any one help me on that??
What is repaint in java?
What is mean by connection pooling?
What are the components and containers in java?
What is commit?
What is client-certificate authentication?