并发编程 多线程之——threa模块 >>> import time >>> time.ctime() 'Thu Jan 9 07:52:57 2020' import time """单线程示例 """ def worker(n): print(f'函数执行开始于:{time.ctime()}') ...
分类:
其他好文 时间:
2020-01-12 15:24:04
阅读次数:
83
此文件是随机生成10个0~100的数 #include <iostream> #include <ctime> #include <cstdlib> using namespace std; int main() { int i,j; srand((unsigned)time(NULL)); //生 ...
分类:
编程语言 时间:
2020-01-10 12:21:26
阅读次数:
68
Redis 是一个内存数据库,所有的数据都直接保存在内存中,那么,一旦 Redis 进程异常退出,或服务器本身异常宕机,我们存储在 Redis 中的数据就凭空消失,再也找不到了。 Redis 作为一个优秀的数据中间件,必定是拥有自己的持久化数据备份机制的,redis 中主要有两种持久化策略,用于将存 ...
分类:
数据库 时间:
2020-01-05 13:56:04
阅读次数:
86
python中的多线程其实并不是真正的多线程,如果想要充分地使用多核CPU资源,在python中大部分情况需要使用多进程。python提供了非常好用的多进程包Multiprocessing,只需要定义一个函数,python会完成其它所有事情。借助这个包,可以轻松完成从单进程到并发执行的转换。mult ...
分类:
编程语言 时间:
2020-01-04 22:41:30
阅读次数:
104
单路 1 # include <iostream> 2 # include <ctime> 3 # include <algorithm> 4 # include "InsertionSort.h" 5 6 //对arr[l...r]部分进行partition操作 7 // 返回p,使arr[l.. ...
分类:
编程语言 时间:
2020-01-04 16:44:09
阅读次数:
110
#include<iostream> #include<cstdio> #include<cstring> #include<ctime> #include<cstdlib> using namespace std; int main(){ srand(time(0));rand();rand(); ...
分类:
其他好文 时间:
2020-01-03 19:21:52
阅读次数:
92
表1 time模块提供的方法 方法 说明 time() 以浮点数返回1970/1/1之后的秒数值 sleep(secs) 让线程暂时停止执行的秒数 asctime([t]) 以字符串返回当前的日期和时间,由struct_time转换 ctime([secs]) 以字符串返回当前的日期和时间,由epo ...
分类:
其他好文 时间:
2020-01-03 13:58:35
阅读次数:
81
//E盘根目录创建以时间命名的文件夹,其中再建4个子文件夹 CString strTime = CTime::GetCurrentTime().Format("%Y%m%d");//获取当前时间 CString strPath = _T("E:\\" + strTime);//路径 if (!Pat... ...
分类:
编程语言 时间:
2020-01-03 12:35:43
阅读次数:
94
》》》》 {'T40': 'cj', 'T298': 'bj', 'Z158': 'sh'}{'T40': '2h', 'T298': '1h', 'Z158': '3h'}checi dizhi atimeT40 cj 2hT298 bj 1hZ158 sh 3hyou buy the checi ...
分类:
其他好文 时间:
2019-12-29 20:37:13
阅读次数:
72