java值传递与引用传递
看代码:
import java.lang.reflect.Field; public class Test { public static void main(String[] args) { Integer a=1000; Integer b=890; System.out.println("a="+a+",b="+b); swap(a,b); System.out.println("a="+a+",b="+b); } private static void swap(Integer a,Integer b){ try { int tempA=b.intValue(); int tempB=a.intValue(); Field field=Integer.class.getDeclaredField("value"); field.setAccessible(true); field.setInt(a, tempA); field.setInt(b, tempB); System.out.println("a="+tempA+",b="+tempB); } catch (Exception e) { e.printStackTrace(); } } }
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步