class Animal(object): """docstring for Animal""" def __init__(self, name): self.name = name def run(self): print 'Animal is running...' class Dog(Animal): """docstring for Dog""" def __init__(sel…
实现Controller的两种形式 形式1:仅仅实现IController接口,自定义Controller对Request的实现.形式2:在实现IController接口以后,继承Controller的一个基类,利用MVC Framework提供的一些特性实现Controller. 1.通过实现IController接口创建controller: public class BasicController:IController { public void Execute(RequestConte…