Open In App
Related Articles

How are parameters passed in Java?

Improve Article
Improve
Save Article
Save
Like Article
Like

See this for detailed description. In Java, parameters are always passed by value. For example, following program prints i = 10, j = 20.  

java




// Test.java
public class Test {
// swap() doesn't swap i and j
public static void swap(Integer i, Integer j) {
    Integer temp = new Integer(i);
    i = j;
    j = temp;
}
public static void main(String[] args) {
    Integer i = new Integer(10);
    Integer j = new Integer(20);
    swap(i, j);
    System.out.println("i = " + i + ", j = " + j);
}
}


Output

i = 10, j = 20

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 05 Dec, 2022
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials