part1 // 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("fil ...
分类:
其他好文 时间:
2020-01-01 10:03:05
阅读次数:
90
// 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt ...
分类:
其他好文 时间:
2020-01-01 09:24:49
阅读次数:
62
# 通过文本内容精准定位元素。可能由于页面内容有空格,经常定位不到元素 driver.find_element_by_xpath('//div[text()="活动服务"]') # 若要定位其它标签元素(如:td,span等),只需要替换div即可 # 通过文本内容模糊定位元素 driver.fin ...
分类:
其他好文 时间:
2019-12-30 17:17:23
阅读次数:
3310
摘: 工作过程TCP标志位:TCP共有6个标志位,分别是: SYN(synchronous),建立联机。ACK(acknowledgement),确认。PSH(push),传输。FIN(finish),结束。RST(reset),重置。URG(urgent),紧急。图解三次握手和四次挥手的过程: 三 ...
分类:
其他好文 时间:
2019-12-30 09:44:12
阅读次数:
69
// 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt ...
分类:
其他好文 时间:
2019-12-30 00:22:18
阅读次数:
61
#include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt", "r"); // 以只读文本方式打开文件file1.txt if (f ...
分类:
其他好文 时间:
2019-12-29 15:22:43
阅读次数:
86
1.1: // 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file ...
分类:
其他好文 时间:
2019-12-28 23:11:10
阅读次数:
148
1、TCP的诞生 为了保证网络的通信畅通,在破坏了几个结点之后还能继续通信,产生了ARPANET: ARPANET的一个下属研究所发明了TCP/IP协议: TCP/IP协议是一个相关的协议群: 2、TCP四次挥手 1)客户端进程发出连接释放报文,并且停止发送数据。释放数据报文首部,FIN=1,其序列 ...
分类:
其他好文 时间:
2019-12-26 19:07:38
阅读次数:
115
JDK1.5新增的enum关键字用于定义枚举类。 枚举类和普通类的区别: 使用enum定义的枚举类默认继承了java.lang.Enum类; 枚举类的构造器只能使用private修饰符; 枚举类的所有实例必须在枚举类中显示列出(分隔;结尾)。列出的实例系统会自动添加public static fin ...
分类:
编程语言 时间:
2019-12-18 21:36:48
阅读次数:
88
import requests from contextlib import closing class ProgressBar(object): def __init__(self, title, count=0.0, run_status=None, fin_status=None, total ...
分类:
编程语言 时间:
2019-12-07 19:42:56
阅读次数:
99