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