9. สร้างใหม่จากเก่า

The Camtasia Studio video content presented here requires JavaScript to be enabled and the latest version of the Macromedia Flash Player. If you are you using a browser with JavaScript disabled please enable it now. Otherwise, please update your version of the free Flash Player by downloading here.

 
รหัสที่ 9-29  คลาส NameTag ถูกออกแบบให้ผลิตอ็อบเจกต์แบบเปลี่ยนค่าไม่ได้
public class NameTag {
  private final int id;
  private final String name;
  public NameTag(int id, String name) {
    this.id = id; this.name = name;
  }
  public int getID() {
    return id;
  }
  public String getName() {
    return name;
  }
}
©2009 S.Prasitjutrakul