what is callbyvalue in java
Answers
Answered by
0
When call is given by the value
Kidding.
In Java the arguments are always passed by value. Java only supports pass by value. With Java objects, the object reference itself is passed by value and so both the original reference and parameter copy both refer to the same Java object. ... If we call a method passing a value, it is known as call by value.
Similar questions