摘要:
<?phpinterface BehaviorInterface { //接口 public function behavior_func();}class SleepInterface implements BehaviorInterface { public function behavior_ 阅读全文
摘要:
<?php/** * 依赖注入 IOC DI *//** * IOC * 控制反转 Inversion of Control * 依赖关系的转移 * 依赖抽象而非实践 * 比较实用的注入方式有三种 * Setter injection 使用setter方法 * Constructor injecti 阅读全文
摘要:
术语介绍 ——引用《Spring 2.0 技术手册》林信良 非侵入性 No intrusive 框架的目标之一是非侵入性(No intrusive) 组件可以直接拿到另一个应用或框架之中使用 增加组件的可重用性(Reusability) 容器(Container) 管理对象的生成、资源取得、销毁等生 阅读全文