search
HomeCommon ProblemIs java passed by value or by reference?

Java is value passing; value passing means that when calling a method, a copy of the actual parameters is passed to the method, so that if the parameters are modified in the method, it will not affect the actual parameters; when passing When a basic type is passed, a copy of the value is passed, and modifications to the copied variable do not affect the original variable; when a reference type is passed, a copy of the reference address is passed, but the copied address and the real address point to both The same real data, so the value in the original variable can be modified.

Is java passed by value or by reference?

The operating environment of this tutorial: Windows 10 system, DELL G3 computer.

Is java passed by value or reference?

Java is passed by value.

When a basic type is passed, a copy of the value is passed, and modifications to the copied variable do not affect the original variable; when a reference type is passed, a copy of the reference address is passed. However, the copied address and the real address both point to the same real data, so the value in the original variable can be modified; when the String type is passed, although the copied address is also a reference address and points to the same data, the String The value cannot be modified, so the value in the original variable cannot be modified.

First, let’s explain what is passing by reference and what is passing by value.

  • Pass by reference refers to passing the address of the actual parameters directly to the method when calling the method. Then the modification of the parameters in the method will affect actual parameters.

  • Pass by value means passing a copy of the actual parameters to the method when calling the method, so that if the parameters are modified in the method, it will not affect to the actual parameters.

So in Java, is it passed by reference or by value? In fact, this issue has been debated continuously, and the official has not given a definite answer. But as far as I understand it, Java is value transfer.

Let’s look at a simple example first:

public void test() {
    int a = 1;
    change(a);
    System.out.println("a的值:" + a);
}
private void change(int a) {
    a = a + 1;
}
// 输出
a的值:1

defines a basic type variable a in the test() method, then calls the change() method to try to change the variable, and finally outputs is still the original value.

First of all, we must be clear that local variables in a method are stored on the stack. If it is a basic type variable, the value of this variable is stored directly. If it is a reference type variable, the value is stored. The address points to a specific value in the heap.

In the above example, the a passed when calling the change() method is actually a copy of the a variable, not the real a. What is changed in the change() method is a copy, which has no effect on the real a. of.

Looking at it this way, Java is indeed passing by value, but if we look at the following example, you will be confused

public void test() {
   User user = new User();
   user.setAge(18);
   change(user);
   System.out.println("年龄:" + user.getAge());
}
private void change(User user) {
   user.setAge(19);
}
// 输出
年龄:19

Look, the properties in the object have been changed, isn’t it passed by value? , it should not change. At this time, someone concluded that when the value passed is a basic type, it is passed by value, and when the value passed is a reference type, it is passed by reference. Is it really?

To analyze this problem, we need to know how variables are stored in jvm.

First look at the basic type. This is very simple. The variable stores the value directly on the stack. What is passed to the change() method is a copy of the variable, so modifications to the copied variable will not affect the original variable. value.

Then look at the reference type. The variable stores the reference address in the stack. This address points to the specific value in the heap, as shown below:

Is java passed by value or by reference?

When calling When the change() method passes in a variable, it also copies the variable, but the copy here is only the reference address in the stack and does not copy the data in the heap, so it will become like the following picture:

Is java passed by value or by reference?

Although the variable is copied, the address it points to is the same. Therefore, when the data in the variable is modified, it will still affect the original real variable. However, if we modify the address of the variable on the stack , it will not affect the original variable, for example, the following code:

public void test() {
   User user = new User();
   user.setAge(18);
   change(user);
   System.out.println("年龄:" + user.getAge());
}
private void change(User user) {
   user = new User();
   user.setAge(19);
}
// 输出
年龄:18

This is to modify the address of the variable in the stack, but it will not affect the original variable.

At this point, everyone almost understands it, but looking back at the original question, a variable of type String is passed in. String is a reference type. It stands to reason that the original variable will be changed. What is the result? Is it unchanged?

String variable is special. We can see from the source code of String that the value of String is maintained through the internal char[] array, but this data is defined as final type. Therefore, the value of String is Immutable. When we usually modify the value of String, we actually create a new String object. For example, in the following code:

String a = "hello";
a = "world";

In this code, in fact, the a variable is not modified to world, but a new String is created. Object, the value of this object is world, and the reference address of this object is assigned to a. The original hello is still in the heap, but this value is not referenced and will be garbage collected by gc after a while.

The changes in the memory of the value passed by the String variable are as follows:

Is java passed by value or by reference?

String copies the variable address, but it cannot change the value of the original String. Because String is immutable, a new String object is created in the change() method. What is changed is the value of the new object, and the original variable has no effect.

For more related knowledge, please visit the FAQ column!

The above is the detailed content of Is java passed by value or by reference?. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

Java数据结构之AVL树详解Java数据结构之AVL树详解Jun 01, 2022 am 11:39 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function