码迷,mamicode.com
首页 > 其他好文 > 详细

引用数据类型的传递,那个值先输出,后面的也同样是同一个值

时间:2018-08-19 23:51:41      阅读:341      评论:0      收藏:0      [点我收藏+]

标签:数据类型   直接   enc   type   str   eth   class   []   print   

public class TestReferenceType {
public static void main(String[] args) {
Student student = new Student();
student.id = 2000;
method(student);
System.out.println("main:" + student.id);//2000
}

// 引用数据类型直接传类和引用变量
public static void method(Student student) {
student.id = 1000;
System.out.println(student.id);//1000
}
}

结果:

1000
main:1000

引用数据类型的传递,那个值先输出,后面的也同样是同一个值

标签:数据类型   直接   enc   type   str   eth   class   []   print   

原文地址:https://www.cnblogs.com/Koma-vv/p/9503248.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!