大学MOOC Java语言程序设计(华东交通大学)1206089803 最新慕课完整章节测试答案
常用数据类型处理类
常用数据类型处理测验
1、单选题:
写出以下程序的运行结果?public class Test{ public static void main(String argv[]){ String s = new String("hello"); myMethod(s); System.out.print("s=" + s); } public static void myMethod(String s){ s = s + "!"; }}
选项:
A: s=hello!
B: s=hello
C: hello!
D: hello
答案: 【 s=hello】点我阅读全文




