@[Toc] 什么是模板方法模式? 模板方法模式(Template Method Pattern)定义如下: Define the skeleton of an algorithm in an operation,deferring some steps to subclasses.Template ...
分类:
其他好文 时间:
2020-03-29 10:51:43
阅读次数:
90
class Operation_folder(): def __init__(self, file_path = '', folder_path = ''): ''' @param file_path:the file path ''' self.file_path = file_path self ...
分类:
编程语言 时间:
2020-03-27 12:34:13
阅读次数:
87
先用lsattr命令查看文件的属性:lsattr 文件名 如果我们想查看一个目录的权限,可使用:lsattr -d 目录名命令 可以看到 在linux下,有些配置文件是不允许任何人包括root修改的,为了防止被误删除或修改,可以设定该文件的"不可修改位(immutable)",即文件属性为i。从上面 ...
分类:
其他好文 时间:
2020-03-25 19:30:14
阅读次数:
104
本文参考原文 http://bjbsair.com/2020 03 22/tech info/5100/ 序 本文主要研究一下skywalking的spring webflux plugin DispatcherHandlerInstrumentation skywalking 6.6.0/apm ...
分类:
编程语言 时间:
2020-03-23 23:37:21
阅读次数:
151
一、概念:将一个请求封装为一个对象,从而使你可用不同的请求对客户进行参数化;对请求排队或记录请求日志,以及支持可撤销的操作。 二、UML示意图 Command是一个命令抽象类,定义了Excute抽象方法,具体命令类持有一个接受者Receiver对象,并实现Excute方法根据不同的命令执行Recei ...
分类:
其他好文 时间:
2020-03-20 22:10:52
阅读次数:
56
You have N integers, A1, A2, ... , AN. You need to deal with two kinds of operations. One type of operation is to add some given number to each number ...
分类:
其他好文 时间:
2020-03-20 18:39:27
阅读次数:
72
一 . 之前项目一直用thrift。现在改成http, 为啥没有用https,后台说他们在后台已经加密了。 用AFHTTPSessionManager中的这个方法 - (NSURLSessionDataTask *)POST:(NSString *)URLString parameters:(id) ...
分类:
Web程序 时间:
2020-03-18 15:24:39
阅读次数:
76
The User Interface Webots GUI is composed of four principal windows: the 3D window that displays and allows you to interact with the 3D simulation, th ...
分类:
Web程序 时间:
2020-03-18 14:03:52
阅读次数:
197
Design a stack which supports the following operations. Implement the CustomStack class: CustomStack(int maxSize) Initializes the object with maxSize ...
分类:
其他好文 时间:
2020-03-16 09:53:58
阅读次数:
54
Task 3 The SOC(Security Operation Center) monitoring team dashboard reported more 1,000 requests to one of our eCommerce Server HTTPS portals in a mat ...
分类:
其他好文 时间:
2020-03-15 19:16:34
阅读次数:
74