自由芒果

文章
11
资源
0
加入时间
3年1月8天

strstr函数的实现

#include #include using namespace std;const char * my_strstr(const char *str1,const char *str2){ assert(str1!=NULL&&str2!=NULL); while (*str1!= '\0') { const char *p=str1; const

从输入url到页面响应经历了什么

打开浏览器,在URL地址栏中输入一个地址,比如:https://www.baidu.com到响应百度主页,经历的过程如下:1.解析https://www.baidu.com域名到对应的服务器IP,通过DNS服务器来完成2.建立TCP连接(三次握手)客户端发送一个SYN标志的数据包给服务端服务端收到后,回传一个带有SYN/ACK标志的数据包以示传达确认信息最后客户端再回传一个带ACK标志的数据包,代...

软件测试面试题更新 2020-7-21更

选择题:1、(C)命令是linux系统标准的进程查看工具,通过它可查看系统中进程的详细信息。A、Ls B、Pstree C、ps D、Top2、如果在linux系统中,某一子目录中存在某些文件,该子目录使用rf命令(C)A、能够删除 B、不可能删除 C、删除该子目录中的所有文件和子目录可以删除 D、不能确定3、以下何者是不合法的布尔表达式(B)A、x in range(6) B、3=a C、e>5 and 4==f D、...

abp vnext_介绍ASP.NET vNext

abp vnextThere’s some really cool stuff going on on the ASP.NET and Web Tools team. The team has been pushing open stuff at Microsoft for a few years now and we've joined forces with the amazing innov...