漫画:设计模式六大原则(上)
学好武功,心法是多么的重要。像是那些练错心法的,比如欧阳锋大叔,心法错了,走火入魔了,死在华山之巅。还有些必先自宫的武功,没准后面一页就说上一页是不需要的。 所以6大原则,或者是7大原则有必要说一下,大家也把心法吃透,才能练好武功啊。 publicclassAnimal{ publicvoideat(){ System.out.println("eat something"); } publicvoidsleep(){ System.out.println("sleeping ~~"); } } publicvoideat(String kind){ if(kind.equals("rabbit")) { System.out.println("eat some carmine"); } if(kind.equals("tigger")) { System.out.println("eat some meat"); } } publicclassRabbitextendsAnimal{ publicvoideat(){ Syste...