上一页 1 ··· 6 7 8 9 10 11 12 13 下一页
摘要: 一、定义 装饰模式(Decorator Pattern)是一种比较常见的模式,其定义如下:Attach additional responsibilities to an object dynamically keeping the same interface.Decorators provide 阅读全文
posted @ 2016-12-27 21:36 飞轩 阅读(422) 评论(0) 推荐(0) 编辑
摘要: 对于开发人员,我想大家对于Maven应该不会陌生吧,如何在一个Maven项目中对这个项目中所引用的第三方jar包有个直观的了解呢? 其实实现很简单,只需要借助于Maven的一条命令,如下所示: 需要说明的是执行这个命令需要在控制台中进入到pom文件所在的目录。 从上面的图片就可以直观的看到所引用的各 阅读全文
posted @ 2016-12-27 21:02 飞轩 阅读(5275) 评论(0) 推荐(0) 编辑
摘要: 1、依赖如下: 将Jar包安装到本地仓库命令: mvn install:install file Dfile=D:\quartz terracotta bootstrap 2.2.2 SNAPSHOT.jar DgroupId=org.quartz scheduler.internal Dartif 阅读全文
posted @ 2016-12-27 20:46 飞轩 阅读(363) 评论(0) 推荐(0) 编辑
摘要: 一、定义 责任链模式定义如下: Avoid coupling the sender of a request to its receiver by giving more than one object a chance to handle the request.Chain the receivi 阅读全文
posted @ 2016-12-27 07:39 飞轩 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 一、定义 命令模式是一个高内聚的模式,其定义为:Encapsulate a request as an object,there by letting you parameterize clients with different requests,queue or log requests,and 阅读全文
posted @ 2016-12-20 16:36 飞轩 阅读(14998) 评论(0) 推荐(1) 编辑
摘要: 一、定义 中介者模式的定义为:Define an object that encapsulates how a set of objects interact. Mediator promotes loose coupling by keeping objects from referring to 阅读全文
posted @ 2016-12-20 15:41 飞轩 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 一、定义 原型模式(Prototype Pattern)的简单程度仅次于单例模式和迭代器模式。 Specify the kinds of objects to create using a prototypical instance, and create new objects by copyin 阅读全文
posted @ 2016-12-19 22:32 飞轩 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 定义 代理模式(Proxy Pattern)是一个使用率非常高的模式,其定义如下: Provide a surrogate or placeholder for another object to control access to it.(为其他对象提供一种代理以控制对这个对象的访问。) 通用类图 阅读全文
posted @ 2016-12-19 17:23 飞轩 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 一、定义 建造者模式(Builder Pattern)也叫生成器模式,其定义如下: Separate the construction fo a complex object from its representation so that the same comstruction process 阅读全文
posted @ 2016-12-19 15:54 飞轩 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 一、定义 模板方法模式(Template Method Pattern)的定义如下: Define the skeleton of an algorithm in an operation, deferring some steps to subclasses. Template Method le 阅读全文
posted @ 2016-12-19 13:54 飞轩 阅读(233) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 下一页