Pass by value/reference, what?(按值/引用传递,什么?)
问题描述
这个程序输出 6,但是当我取消注释第 9 行时,输出是 5.为什么?我认为 b.a 不应该改变,应该保持 5 为主.
This program gives 6 as output, but when I uncomment the line 9, output is 5. Why? I think b.a shouldn't change, should remain 5 in main.
1 class C1{
2 int a=5;
3 public static void main(String args[]){
4 C1 b=new C1();
5 m1(b);
6 System.out.println(b.a);
7 }
8 static void m1(C1 c){
9 //c=new C1();
10 c.a=6;
11 }
12 }
推荐答案
当你在 Java 中传递对象时,它们作为引用传递,意思是 b 在 main 方法中引用的对象和 c 作为方法 m1 中的参数,它们都指向同一个对象,因此当您将值更改为 6 时,它会反映在 main方法.
When you pass object in Java they are passed as reference meaning object referenced by b in main method and c as argument in method m1, they both point to the same object, hence when you change the value to 6 it gets reflected in main method.
现在,当您尝试执行 c = new C1(); 时,您使 c 指向不同的对象,但 b 是仍然指向您在 main 方法中创建的对象,因此更新后的值 6 在 main 方法中不可见,您得到 5.
Now when you try to do c = new C1(); then you made c to point to a different object but b is still pointing to the object which you created in your main method hence the updated value 6 is not visible in main method and you get 5.
这篇关于按值/引用传递,什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:按值/引用传递,什么?
基础教程推荐
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- Java Swing计时器未清除 2022-01-01
- 多个组件的复杂布局 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
- 从 python 访问 JVM 2022-01-01
- 不推荐使用 Api 注释的描述 2022-01-01
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- 大摇大摆的枚举 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
