一:Python 正则表达式 正则表达式(regex)是一个特殊的字符序列,它能帮助你方便的检查一个字符串是否与某种模式匹配。 Python1.5版本起通过标准库中的re 模块来支持 Perl 风格的正则表达式。 二:正则表达模式 2.1.符号 2. 2.特殊字符 2.3.扩展表示法 2.4.标志修 ...
分类:
编程语言 时间:
2019-11-25 20:19:19
阅读次数:
76
部分摘自 http://www.cnblogs.com/dolphin0520/p/3932921.html 线程池的5中创建方式: 1、Single Thread Executor : 只有一个线程的线程池,因此所有提交的任务是顺序执行, 代码: Executors.newSingleThread ...
分类:
编程语言 时间:
2019-11-25 18:22:27
阅读次数:
75
405. Convert a Number to Hexadecimal Easy Easy Easy Given an integer, write an algorithm to convert it to hexadecimal. For negative integer, two’s com ...
分类:
其他好文 时间:
2019-11-25 14:57:39
阅读次数:
47
1.定义:单例模式,是一种常用的软件设计模式。在它的核心结构中只包含一个被称为单例的特殊类。通过单例模式可以保证系统中,一个类只有一个对象实例。 2.结构: 3.实现: 1)饿汉模式:不管有没有使用,对象都已经创建了; 1 // 饿汉式单例 2 public class Singleton { 3 ...
分类:
其他好文 时间:
2019-11-25 13:29:41
阅读次数:
54
单点登录SSO(Single Sign On)说得简单点就是在一个多系统共存的环境下,用户在一处登录后,就不用在其他系统中登录,也就是用户的一次登录能得到其他所有系统的信任。单点登录在大型网站里使用得非常频繁,例如像阿里巴巴这样的网站,在网站的背后是成百上千的子系统,用户一次操作或交易可能涉及到几十 ...
分类:
其他好文 时间:
2019-11-25 11:44:14
阅读次数:
73
Choose three Which three statements are true about sequences in a single instance Orade database? A) A sequence's unallocated cached values are lost i ...
分类:
其他好文 时间:
2019-11-25 11:39:30
阅读次数:
58
A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number ...
分类:
其他好文 时间:
2019-11-24 23:55:55
阅读次数:
155
#include<iostream> #include<cstdio> #include<cstdlib> using namespace std; int T,n; int a[100001],b[100001]; int main() { scanf("%d",&T); while(T--) { ...
分类:
其他好文 时间:
2019-11-24 13:42:35
阅读次数:
44
# mysqldump -utmp -ptmp -h127.0.0.1 -P3307 --single-transaction --master-data=2 --all-databases > 3307_20191123.sql mysqldump: [Warning] Using a passw ...
分类:
数据库 时间:
2019-11-23 23:57:28
阅读次数:
298
目录 红帽系统忘记密码操作 红帽系统设置ip,主机名 centos系统忘记密码操作 一、红帽系统忘记密码操作 1)再出现以下界面后按键盘e键 2)进入以下界面后,再次按e键 3)使用上下键选择第2项或带有kernel字样的行,然后再次按下e键 4)出现下图,在光标处输入single,按回车键,会回到 ...
分类:
系统相关 时间:
2019-11-22 13:40:32
阅读次数:
80