初心者のJavaの質問ですが、以下の例で値による呼び出し(または参照)がどのように機能しているか理解できません-
カスタム文字列オブジェクトがメソッドを終了した後、文字列値が変更されないのはなぜですか。?Dateのような他のクラスと同じです。
public class StringMadness {
public static void main(String[] args) {
String s = "Native String";
CustomStringObject cs = new CustomStringObject();
System.out.println("Custom String Before: " + cs.str);
hello(cs);
System.out.println("Custom String After: " + cs.str);
System.out.println("Native String Before: " + s);
hello(s);
System.out.println("Native String After: " + s);
}
private static void hello(String t) {
t = "hello " + t;
}
private static void hello(CustomStringObject o) {
o.str = "hello " + o.str;
}
}
class CustomStringObject {
String str = "Custom String";
}