2010-11-19から1日間の記事一覧

Flyweight パターン

Flyweight パターン MyMain public class MyMain { public static void main(String args[]) { MyPool pool = new MyPool(); MyAlbum album = pool.getEmployee("TWIST", "サイコーな Rock You!"); if (album != null) System.out.println(album.albumName …