我是Java的新手,我希望以下函数来更改源变量。
public class DummyClass {
public void str(String str) {
str = "";
}
}
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
String str = "strstr";
DummyClass classy = new DummyClass();
classy.str(str);
System.out.print(str);
}
}
它打印“strstr”,我希望它什么都不打印。