linux的touch命令不常用,一般在使用make的时候可能会用到,用来修改文件时间戳,或者新建一个不存在的文件。 1.命令格式: touch [选项]... 文件... 2.命令参数: -a 或--time=atime或--time=access或--time=use 只更改存取时间。 -c 或 ...
分类:
其他好文 时间:
2020-03-16 12:50:17
阅读次数:
61
01日志等级 import logging logging.debug("这是一条debug级别的日志") logging.info("这是一条info级别的日志") logging.warning("这是一条warning级别的日志") logging.error("这是一条error级别的日志" ...
分类:
编程语言 时间:
2020-03-14 20:03:10
阅读次数:
66
#include<iostream> #include<iomanip> #include<ctime> #include<fstream> #include<string> #define radix 10 using namespace std; clock_t start,stop; //学生 ...
分类:
编程语言 时间:
2020-03-14 16:37:55
阅读次数:
82
Gym - 100712H tarjan无向图缩点+树上直径 #include<iostream> #include<cstdio> #include<queue> #include<algorithm> #include<cmath> #include<ctime> #include<set> # ...
分类:
其他好文 时间:
2020-03-11 23:56:54
阅读次数:
100
1.1.1 永久性数据结构 namenode的目录结构如下图 (1) VERSION属性文件 namespaceid文件系统命名空间唯一标识。 clusterID是将HDFS集群作为一个整体赋予的唯一标识符。 blockpoolID是数据块池的唯一标识。 CTime是namenode存储系统创建时间 ...
分类:
其他好文 时间:
2020-03-11 10:58:32
阅读次数:
49
OpenSSL Heartbleed漏洞的公开和流行让许多人兴奋了一把,也让另一些人惊慌了一把。 单纯从攻击的角度讲,我已知道的,网上公开的扫描工具有: 1. Nmap脚本ssl-heartbleed.nse: http://nmap.org/nsedoc/scripts/ssl-heartblee ...
分类:
其他好文 时间:
2020-03-06 13:42:48
阅读次数:
93
想要取随机数可以使用rand()函数,rand()函数可以实现随机取一个从0到最大随机数范围内的任意整数,最大随机数是确定的,例如想要在0~99之内随机取一个整数可以使用: int num=rand()%100 来实现,如果想要使取随机数的范围的起始值不从0开始,则在上式后面直接加一个你想要的整数, ...
分类:
编程语言 时间:
2020-03-05 21:02:15
阅读次数:
124
#include<iostream> using namespace std; #include<string> #include<ctime> int main() { //成绩统计 int scores[3][3] = { {100,100,100}, {90,50,100}, {60,70,8 ...
分类:
编程语言 时间:
2020-02-29 23:59:10
阅读次数:
137
#include<iostream> using namespace std; #include<string> #include<ctime> int main() { //乘法口诀表 for (int j=1; j < 10; j++) { for (int i = 1; i <= j; i++ ...
分类:
编程语言 时间:
2020-02-29 14:54:18
阅读次数:
65
#include<iostream> using namespace std; #include<string> #include<ctime> int main() { //goto语句 cout << "1.xxxxxx" << endl; cout << "2.xxxxxx" << endl; ...
分类:
编程语言 时间:
2020-02-29 14:42:00
阅读次数:
68