![]() |
#2
yjh4619412982018-07-21 00:37
|
public class test {
public static void main(String[] args) {
change("123");
}
public static void change(String str){
str="welcome";
System.out.print(str);
}
}
运行结果是 “welcom”
希望各位师傅解析一下