码迷,mamicode.com
首页 >  
搜索关键字:decorator pattern    ( 8466个结果
设计模式——装饰器模式
装饰器模式(Decorator Pattern)允许向一个现有的对象添加新的功能,同时又不改变其结构。这种类型的设计模式属于结构型模式,它是作为现有的类的一个包装。 装饰器模式结构图 Component(抽象构件) :它是装饰类和具体构件的公共父类(一般是接口或者抽象类); ConcreteComp ...
分类:其他好文   时间:2020-03-16 14:34:07    阅读次数:50
python :practice integrated decorator three categories
python decorator is a crucial(vital,signifiant) process. decorator mail two category 1:principal function no arguments(parameters): for example: princ ...
分类:编程语言   时间:2020-03-15 22:19:20    阅读次数:57
python:practice decorator calaulate_time
from functools import reduce import time def factorial_array(n) number=reduce(lambda x,y:x*y,range(1,n+1)) return number print( factorial_array(101) d ...
分类:编程语言   时间:2020-03-15 20:28:32    阅读次数:69
配置springboot访问静态文件
配置yml spring: mvc: static-path-pattern: /static/** resources: static-locations: classpath:/static/ ...
分类:编程语言   时间:2020-03-15 10:06:19    阅读次数:303
Thymeleaf的学习(二)(常用标签的使用方法)
具体用法参考代码中的备注即可 常用方法 后台代码controller @Controller @RequestMapping("/fileoperate") public class fileOperateController { /** * 功能:跳转thymeleaf测试页面 * 创建人:by ...
分类:其他好文   时间:2020-03-15 09:47:07    阅读次数:43
redis-其他应用
1.codis 2.twemproxy 3.redis如何实现事物 4.redis中watch命令的作用 5.项目中redis性能的问题 6.Redis应用key很大,如何取出特定的key呢 7.如何高效的找到redis中所有以oldboy开头的key ...
分类:其他好文   时间:2020-03-14 22:20:45    阅读次数:59
Java8 时间差计算
方式一: /** * DateTimeFormatter java 8 线程安全 * @throws Exception */ @Test public void testTimeDiff() throws Exception { // DateTimeFormatter formatter = D ...
分类:编程语言   时间:2020-03-14 18:14:00    阅读次数:377
单例模式
一、单例模式 1、单例模式(Singleton Pattern):指确保一个类在任何情况下都绝对只有一个实例,私有化其所有构造方法,并提供一个全局访问点。(属于创建型模式) 2、适用场景 确保任何情况下都绝对只有一个实例(如ServletContext、ServletConfig、Applicati ...
分类:其他好文   时间:2020-03-14 16:54:46    阅读次数:58
地名拆分,正则示例
1 if __name__ == '__main__': 2 def transfer(birthplace): 3 pattern_rule = '(.*[省|自治区])(.*)' 4 special = ['香港特别行政区', '澳门特别行政区'] 5 directly = ['北京市', '上 ...
分类:其他好文   时间:2020-03-14 16:33:00    阅读次数:81
07、shell三剑客之grep
grep是过滤来自一个文件或标准输入匹配模式内容。 除了grep外,还有egrep,fgrep。 egrep是grep的扩展,相当于grep -E 。fgrep相当于grep -f,用的少 用法:grep [OPTION]......PATTERN[FILE]..... 参数详解: -E 模式是扩展 ...
分类:系统相关   时间:2020-03-14 12:56:35    阅读次数:81
8466条   上一页 1 ... 58 59 60 61 62 ... 847 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!