装饰者模式 Decorator模式(别名Wrapper):动态将职责附加到对象上,若要扩展功能,装饰者提供了比继承更具弹性的代替方案。 装饰者与被装饰者拥有共同的超类,继承的目的是继承类型,而不是行为 比如现在有个方法,是过滤文字的方法 1.接口: 2.继承者 3.调用 控制台输出 现在我有个需求, ...
分类:
编程语言 时间:
2016-06-06 21:54:22
阅读次数:
139
导入高德地图demo,出现如下错误提示:Warning:Gradle version 2.10 is required. Current version is 2.8. If using the gradle wrapper, try editing the distributionUrl in C:\Users\Administrator\Desktop\android_studio\AMapL...
分类:
移动开发 时间:
2016-06-06 01:11:37
阅读次数:
376
一、pytesseract介绍 1、pytesseract说明 pytesseract最新版本0.1.6,网址:https://pypi.python.org/pypi/pytesseract Python-tesseract is a wrapper for google's Tesseract- ...
分类:
编程语言 时间:
2016-06-05 12:37:08
阅读次数:
975
<1>将E:\nexus\nexus-2.13.0-01\bin目录添加到path中,cmd-->nexus, 通过nexus install,nexus start,nexus uninstall来 安装,启动和卸载服务 <2>修改bin->jsw->conf->wrapper.conf中jdk的 ...
分类:
其他好文 时间:
2016-05-29 22:46:39
阅读次数:
222
1.意图 动态地给一个对象添加一些额外的职责。就增加功能来说,Decorator模式相比生成子类更为灵活。 2.别名 包装器 Wrapper. 3.动机 给某个对象而不是整个类添加一些功能。一个较为灵活的方式时将组件嵌入另一个对象中。 4.适用性 在不影响其它对象的情况下,以动态、透明的方式给单个对 ...
分类:
其他好文 时间:
2016-05-29 18:20:35
阅读次数:
109
【0】README
0.1)本文部分文字描述转自 “how tomcat works”,旨在学习 “tomcat(15)Digester库” 的基础知识;
2)problem+solution:
2.1)problem:如下面的代码,Bootstrap类实例化连接器,servlet容器,Wrapper容器和其它组件,如设置连接器的关联顶层容器,通过set方法将它们联系起来;如监听器组...
分类:
其他好文 时间:
2016-05-27 12:46:28
阅读次数:
273
Most tools require installation on your computer before you can use them. If the installation is easy, you may think that’s fine. But it can be an unn ...
分类:
移动开发 时间:
2016-05-26 18:44:08
阅读次数:
332
PHP.ini默认配置下,用file_get_contents读取https的链接,就会报如下错误,本文给出解决方法 错误: Warning: fopen() [function.fopen]: Unable to find the wrapper "https" - did you forget ...
分类:
Web程序 时间:
2016-05-26 08:36:51
阅读次数:
192
先参考一个例子 http://www.cnblogs.com/aigongsi/archive/2012/04/01/2429166.html#!comments 即使只是i++,实际上也是由多个原子操作组成:read i; inc; write i,假如多个线程同时执行i++,volatile只能 ...
分类:
移动开发 时间:
2016-05-24 11:59:33
阅读次数:
432
1.意图 将一个类接口转换成客户希望的另外一个接口。Adapter模式使那些原本不能一起工作的类,可以一起工作。 2.别名 包装器 Wrapper. 3.动机 一个应用可能会有一些类具有不同的接口,并且这些接口互不兼容,可以专门定义一个类,用来适配互不兼容的类。 4.适用性 你想使用一个已经存在的类 ...
分类:
其他好文 时间:
2016-05-21 17:27:59
阅读次数:
105