java 值传递 引用传递

本文通过一个代码实验探讨了Java中的值传递和引用传递。实验显示,Java中基本类型参数为值传递,对象参数为引用传递,尽管对象本身是按值传递的引用,但方法内对对象属性的修改会影响到原始对象。实验结论强调了理解这两种传递方式在实际编程中的重要性。
摘要由CSDN通过智能技术生成

LD is tigger,CG are not brothers, throw the pot and shine.
The competition in the workplace is always calm on the surface, but in fact it is turbulent.
talk is cheap, show me the code,Keep progress,make a better result.
Survive during the day and develop at night。

目录

概述

今天遇到了一个问题,有点困惑,写了代码自己实验一下:

需求:

1.提出问题
Java 是引用传递和值传递?
2.发现问题
3.解决问题

设计思路

实现思路分析

1. 提出问题

2.发现问题

拓展Demo实现

相关工具如下:

实验效果:

package javaref;

public class test {

	
	public static void main(String[] args) {
		
		String className="com.StandXMLConfigExportGenerator";
		System.out.println("修改前数值"+className);
		test(className);
		System.out.print("修改后数值="+className);
		
	}

	private static String test(String className) {
        System.out.println("方法进入前:"+className);
		String[] classNamesStrs = className.split("\\.");
          className=classNamesStrs[classNamesStrs.length-1];
		String firstChar=className.substring(0, 1);
		String beanName=className.replaceFirst(firstChar, firstChar.toLowerCase());
		System.out.println("方法执行后"+className);
		//return className;
		return beanName;
	}
}

修改前数值com.StandXMLConfigExportGenerator
方法进入前:com.StandXMLConfigExportGenerator
方法执行后StandXMLConfigExportGenerator
修改后数值=com.StandXMLConfigExportGenerator

分析:

Java属于值传递,在同一个方法体内,修改前后某个具体的数值并没有发生变化,但是可以通过改变的方法吧改变后的数值更改过来。

小结:

主要讲述了自己的一些体会,里面有许多不足,请大家指正~

参考资料和推荐阅读

  1. JAVA 值传递和引用传递.
    1. JAVA 值传递和引用传递.

欢迎阅读,各位老铁,如果对你有帮助,点个赞加个关注呗!~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

执于代码

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值