Home > Java > javaTutorial > body text

Does Java Pass Primitives by Reference?

Mary-Kate Olsen
Release: 2024-11-07 17:45:02
Original
933 people have browsed it

Does Java Pass Primitives by Reference?

Pass by Reference for Primitives in Java

Java employs pass by value, unlike C , which utilizes pass by reference. This can create scenarios where modifying a primitive data type (e.g., int, float) in a method doesn't affect its value outside the method.

Consider this Java code:

public class XYZ {
    public static void main() {
        int toyNumber = 5;
        XYZ temp = new XYZ();
        temp.play(toyNumber);
        System.out.println("Toy number in main " + toyNumber);
    }

    void play(int toyNumber) {
        System.out.println("Toy number in play " + toyNumber);
        toyNumber++;
        System.out.println("Toy number in play after increment " + toyNumber);
    }
}
Copy after login

This code prints:

Toy number in play 5
Toy number in play after increment 6
Toy number in main 5
Copy after login

The toyNumber variable is not modified outside the play() method because it is passed by value.

Alternatives to Pass by Reference in Java:

To mimic C pass by reference in Java for primitives, several options are available:

1. Public Member Variable:

Create a class with a public member variable for toyNumber, and pass a reference to the class.

class MyToy {
    public int toyNumber;
}
Copy after login
void play(MyToy toy) {
    System.out.println("Toy number in play " + toy.toyNumber);
    toy.toyNumber++;
    System.out.println("Toy number in play after increment " + toy.toyNumber);
}
Copy after login

2. Return Value:

Instead of pass by reference, return the modified value from the method.

int play(int toyNumber) {
    System.out.println("Toy number in play " + toyNumber);
    toyNumber++;
    System.out.println("Toy number in play after increment " + toyNumber);
    return toyNumber;
}
Copy after login

In the main method, update toyNumber using the returned value.

3. Class/Static Variable:

If the play() and main() methods are part of the same class, convert toyNumber to a class member variable.

4. Array of One Element:

This is a hack but entails passing a single-element array and modifying its value.

void play(int[] toyNumber) {
    System.out.println("Toy number in play " + toyNumber[0]);
    toyNumber[0]++;
    System.out.println("Toy number in play after increment " + toyNumber[0]);
}
Copy after login

The above is the detailed content of Does Java Pass Primitives by Reference?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!