[填空题] 类Test定义如下:public class Test{ public static void main(String args[]) { String sty=new String(

[填空题] 类Test定义如下:public class Test{ public static void main(String args[]) { String sty=new String(,第1张

[填空题] 类Test定义如下:public class Test{ public static void main(String args[]) { String sty=new String(

[填空题] 类Test定义如下:public class Test{ public static void main(String args[]) { String sty=new String("abcde"); char ch[]={’A’,’B’,’C’,’D’,’E’}; ml(str,ch); System.out.print(str+","); System.out.println(ch); } public static void ml(String s,char ch[]) { s="Hello"; ch[3]=’Z’; }}那么程序的执行结果为: 【9】

正确答案:

abcde,ABCZE

参考解析:

main()方法中的变量str中存放的是 String对象"abcde"的内存空间引用,所以引用类型在进行参数传递时,是将引用拷贝给形式参数s。m1()方法中的s="Hello"会使s引用一个新的字符串,但是main()方法中的str还是引用着String对象"abcde"。所以打印结果应为abcde,ABCZE。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5599136.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存