Question d’entretien chez Yahoo

Difference between pass by value and pass by reference

Réponse à la question d'entretien

Utilisateur anonyme

13 déc. 2011

Pass by Reference means the passing the address itself rather than passing the value and pass by value means passing a copy of the value as an argument. Java is strictly "Pass by value".

1