On Your Mark
2013年9月16日月曜日
デザインパターン 設計(Java)
// 役職抽象クラス public abstract class Yakushoku { private Yakushoku next = null; public Yakushoku setNext(Yakushoku next){ this.next = next; return next; } public Yakushoku getNext() { return next; } protected abstract void judge(Question question); } // 係長クラス public class Kakaricho extends Yakushoku { public Kakaricho() { } protected void judge(String val) { if (val.equals("給料上げて!")) { getNext().judge(val); } } } public class Main{ public static void main(String args[]){ Responsible kakaricho = new Kakaricho(); Responsible kacho = new Kacho(); Responsible bucho = new Bucho(); Responsible Shacho = new Shacho(); kakaricho.setNext(kacho).setNext(bucho).setNext(Shacho); kakaricho.judge("給料上げて!"); } }
QooQ
0 件のコメント:
コメントを投稿