python中的嵌套类
动态语言中很好的嵌套类的实现,应该说嵌套类解决设计问题同时简化了程序。直接上代码
if __name__ == '__main__': p = parent() p.getName() c = p.child() c.getName()