2004-07-13から1日間の記事一覧

長文風味

適当なコードを書くだけで長文更新になる。小説の評はまじめにボケたくなるから難しい。

変数の不変・オブジェクトの不変

Imutable.java public class Imutable { final public String str; public Imutable(String str){ super(); this.str = str; } public void main(String[] args){ Imutable im = new Imutable("Object1"); im = new Imutable("Object2"); } } 上のImutable.s…