实验任务三 1.正确输出,且生成了file3.dat 2.是正确的,且直观可读 实验任务四 1.正确输出,生成了file4.dat,且用记事本打开直观可读 2. #include <stdio.h> #include <stdlib.h> typedef struct student{ int nu ...
分类:
其他好文 时间:
2021-06-17 16:34:46
阅读次数:
0
1、docker介绍 详情参见:https://www.cnblogs.com/xiaoyuanqujing/p/11839932.html 0 各种软件用什么语言写的 zabbix(监控软件):php ansible(批量管理主机,执行命令,无angent):python # angent客户端 ...
分类:
其他好文 时间:
2021-06-16 17:31:04
阅读次数:
0
Apache Flink Apache Flink is an open source stream processing framework with powerful stream- and batch-processing capabilities. Learn more about Flin ...
分类:
其他好文 时间:
2021-06-15 18:01:00
阅读次数:
0
#什么是 URL、URI?URL、URI 的组成? URL 与 URI 有何异同? #创建 URL 对象 ##从字符串构建URL对象 ##由组成部分构建URL对象 ##根据相对URL构建URL对象 #从 URL 对象获取数据 ##openStream ##openConnection ##getCo ...
分类:
其他好文 时间:
2021-06-15 17:58:35
阅读次数:
0
flag = Trued = {}with open('b.txt', mode='rt', encoding='utf-8') as f: res = f.readlines() for line in res: i = line.strip('\n').split(':') d[i[0]] = ...
分类:
其他好文 时间:
2021-06-15 17:54:21
阅读次数:
0
d = {}with open('b.txt', mode='rt', encoding='utf-8') as f: res = f.readlines() for line in res: i = line.strip('\n').split(':') d[i[0]] = i[1]while T ...
分类:
其他好文 时间:
2021-06-15 17:52:42
阅读次数:
0
open SYSCALL_DEFINE3(open, const char __user *, filename, int, flags, umode_t, mode) { ...... return do_sys_open(AT_FDCWD, filename, flags, mode); } l ...
分类:
其他好文 时间:
2021-06-15 17:45:08
阅读次数:
0
Linux中任何一个命令,当你用心研究到深处时,也许总能有着新的发现或者有趣的用途,如下方的pwd命令 对于pwd命令,大家都知道是用于打印当前的工作目录路径,而且是绝对路径 pwd命令两个选项的,默认就是使用(-L), 当然还有一个选项就是-P (大写的P) pwd默认输出的当前工作目录的全路径( ...
分类:
其他好文 时间:
2021-06-15 17:41:40
阅读次数:
0
xshell无法通过密码登录的问题如下: 1、登录主机:vi /etc/ssh/sshd_config 2、搜索关键字:PasswordAuthentication 3、将PasswordAuthentication no改为yes 4、保存后重启网络设置:service sshd restart ...
分类:
系统相关 时间:
2021-06-13 10:49:47
阅读次数:
0
CentOS 安装 nginx 教程 下载安装包 cd /usr/local wget http://nginx.org/download/nginx-1.19.8.tar.gz 安装依赖 yum install gcc-c++ yum install pcre yum install pcre-d ...
分类:
其他好文 时间:
2021-06-13 10:38:46
阅读次数:
0