I/O流分类: InputStream和Read的子类都有read(),用来读取单个字节或字节数组 OutputStream和write的子类都有write(),用来写入单个字节或字节数组 一般都是通过装饰器Decorator模式叠加多个对象提供所期望的功能。创建单一的流,却需要创建多个对象 Inp ...
分类:
编程语言 时间:
2019-06-19 12:08:17
阅读次数:
144
方法一:eject 打开 package.json ,可以看到eject。运行 npm run eject 可以让由create-react-app创建的项目的配置项暴露出来。 运行npm run eject ,此时,项目中多了一个config文件,并且各个配置文件已经暴露出来了。(运行npm ru ...
分类:
移动开发 时间:
2019-06-15 11:43:50
阅读次数:
273
Attach additional responsibilities to an object dynamically keeping the same interface.Decorators provide a flexible alternative to subclassing for ex ...
分类:
其他好文 时间:
2019-06-14 00:44:11
阅读次数:
114
#!python# -*- coding:utf-8 -*-# 场景:# 目的:通过单例实现客户端调用sdk时,sdk中的方法对客户端数据的批处理# 参考:# {# Python单例模式(Singleton)的N种实现 - 知乎# https://zhuanlan.zhihu.com/p/37534... ...
分类:
编程语言 时间:
2019-06-11 20:55:22
阅读次数:
204
一,组件协作: Template Method Strategy Observer / Event 二,单一职责:解决类与类的责任划分问题 Decorator Bridge 三,对象创建: Factory Method Abstract Factory Prototype Builder 四,对象性 ...
分类:
其他好文 时间:
2019-06-04 22:36:02
阅读次数:
100
render_to_response 参数顺序:(template_name, dictionary=None, context_instance=None) 在django模板系统中,有两种封装模板变量的类,一个是django.template.Context,这是最常用的,我们在使用render ...
分类:
其他好文 时间:
2019-06-03 17:18:41
阅读次数:
90
一、 EL(&SpEL) EL语言(CDI与表达式语言(EL)集成,允许在JavaServer Faces页面或JavaServer Pages页面中直接使用任何组件) 1.概述 EL是JSP内置的表达式语言,用以访问页面的上下文以及不同作用域中的对象 ,取得对象属性的值,或执行简单的运算或判断操作 ...
分类:
其他好文 时间:
2019-05-23 10:48:56
阅读次数:
132
(flappbird) luo@luo-ThinkPad-W540:data$ pip list labelImgPackage Version Location absl-py 0.2.2 appdirs 1.4.3 asn1crypto 0.24.0 astor 0.7.1 attrs 18.1 ...
分类:
其他好文 时间:
2019-05-15 21:42:16
阅读次数:
185
这篇文章记录了 java 中的代理模式的使用。讲静态代理时,简单介绍了与装饰者模式的区别,讲动态代理,分别介绍 JDK 动态代理和 CGlib 动态代理的使用方式。 ...
分类:
其他好文 时间:
2019-05-15 00:42:19
阅读次数:
139
Take away from NGCONF talk. It is a good show case to how to use decorator. One take away is that we can use 'symbol' to uqine key. ...
分类:
其他好文 时间:
2019-05-10 20:39:49
阅读次数:
140