Java SE入门及基础(25)

目录

方法带参(续第24篇)

6.方法参数传递规则

方法传参来自官方的说明

基本数据类型传值案例

基本数据类型传值时传递的是值的拷贝

引用数据类型传值案例

引用数据类型传值时传递的是对象在堆内存上的空间地址

[Java SE文章参考:Java SE入门及基础知识合集-CSDN博客](#Java SE文章参考:Java SE入门及基础知识合集-CSDN博客)

方法带参(续第24篇)

**6.**方法参数传递规则

方法传参来自官方的说明

Primitive arguments, such as an int or a double, are passed into methods by
value. This means that any changes to the values of the parameters exist only
within the scope of the method. When the method returns, the parameters are
gone and any changes to them are lost.
基本数据类型的参数(例如 int 或 double )按值传递给方法。 这意味着对参数值的任何更改仅存在于方法范围内。 当方法返回时,参数消失,对它们的任何更改都将丢失。
Reference data type parameters, such as objects, are also passed into methods
by value. This means that when the method returns, the passed-in reference
still references the same object as before. However, the values of the
object's fields can be changed in the method, if they have the proper access
level.
引用数据类型参数(例如对象)也按值传递到方法中。 这意味着当方法返回时,传入的引用仍然引用与以前相同的对象。 但是,如果对象的字段的值具有适当的访问级别,则可以在方法中更改它们。

基本数据类型传值案例

public class PassingPrimitive {
public static void main ( String [] args ) {
int a = 10 ;
change ( a ); // 调用方法时,实际上传递的是变量 a 的值的拷贝
System . out . println ( a );
}
public static void change ( int number ) {
number ++ ;
}
}

基本数据类型传值时传递的是值的拷贝

引用数据类型传值案例

public class ComputerTest {
public static void main ( String [] args ) {
Computer c1 = new Computer ();
c1 . brand = " 联想 " ;
c1 . type = "T430" ;
c1 . price = 5000 ;
Computer c2 = new Computer ();
c2 . brand = " 联想 " ;
c2 . type = "W530" ;
c2 . price = 6000 ;
Computer c3 = new Computer ();
c3 . brand = " 联想 " ;
c3 . type = "T450" ;
c3 . price = 7000 ;
//这里传递的参数就是实际参数
Computer c4 = new Computer ( " 联想 " , "T430" , 5000 );
updateComputer ( c4 );
System . out . println ( c4 . price );
Computer c5 = new Computer ( " 联想 " , "W530" , 6000 );
Computer c6 = new Computer ( " 联想 " , "T450" , 7000 );
}
public static void updateComputer ( Computer computer ){
computer . price = 10000 ;
}
}

引用数据类型传值时传递的是对象在堆内存上的空间地址

Java SE文章参考:Java SE入门及基础知识合集-CSDN博客

相关推荐
重生之我在20年代敲代码11 分钟前
strncpy函数的使用和模拟实现
c语言·开发语言·c++·经验分享·笔记
爱上语文12 分钟前
Springboot的三层架构
java·开发语言·spring boot·后端·spring
serve the people16 分钟前
springboot 单独新建一个文件实时写数据,当文件大于100M时按照日期时间做文件名进行归档
java·spring boot·后端
qmx_071 小时前
HTB-Jerry(tomcat war文件、msfvenom)
java·web安全·网络安全·tomcat
为风而战1 小时前
IIS+Ngnix+Tomcat 部署网站 用IIS实现反向代理
java·tomcat
编程零零七2 小时前
Python数据分析工具(三):pymssql的用法
开发语言·前端·数据库·python·oracle·数据分析·pymssql
技术无疆3 小时前
快速开发与维护:探索 AndroidAnnotations
android·java·android studio·android-studio·androidx·代码注入
2401_858286113 小时前
52.【C语言】 字符函数和字符串函数(strcat函数)
c语言·开发语言
铁松溜达py3 小时前
编译器/工具链环境:GCC vs LLVM/Clang,MSVCRT vs UCRT
开发语言·网络
everyStudy3 小时前
JavaScript如何判断输入的是空格
开发语言·javascript·ecmascript