2005-09-07から1日間の記事一覧

今日読むプログラム

(for id:yurli) public class sample1 { public static void main(String[] args) throws Exception { String a = "abc"; String b = a; a += b + 100 + 200; System.out.println(a); } } 最後に出力される文字列は何でしょう? 今日は、複合代入演算子なる…