上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: #MySQL数据库系统 ##知识点总结 ###一、MySQL MySQL是一个关系型数据库管理系统,由瑞典MySQL AB 公司开发,目前属于Oracle 旗下产品。MySQL 是最流行的关系型数据库管理系统之一,在 WEB 应用方面,MySQL是最好的 RDBMS (Relational Data 阅读全文
posted @ 2022-11-19 15:40 戴骏 阅读(18) 评论(0) 推荐(0) 编辑
摘要: #一、实验截图 ##(一)fifo ##(二)pipe ##(三)signal #二、实验代码 ##fifo //consumer #include <stdio.h> #include <stdlib.h> #include <string.h> #include <fcntl.h> #inclu 阅读全文
posted @ 2022-11-11 16:34 戴骏 阅读(25) 评论(0) 推荐(0) 编辑
摘要: #TCP/IP协议 从字面意义上讲,有人可能会认为 TCP/IP 是指 TCP 和 IP 两种协议。实际生活当中有时也确实就是指这两种协议。然而在很多情况下,它只是利用 IP 进行通信时所必须用到的协议群的统称。具体来说,IP 或 ICMP、TCP 或 UDP、TELNET 或 FTP、以及 HTT 阅读全文
posted @ 2022-11-11 15:35 戴骏 阅读(22) 评论(0) 推荐(0) 编辑
摘要: #截图 #代码 #include <stdio.h> #include <unistd.h> #include <signal.h> #include <string.h> #include <assert.h> #include <stdlib.h> #include <time.h> //usi 阅读全文
posted @ 2022-11-10 09:32 戴骏 阅读(22) 评论(0) 推荐(0) 编辑
摘要: #截图 #代码 //r09 #include<stdio.h> #include<stdlib.h> #include<unistd.h> #include<sys/types.h> #include<sys/wait.h> #include<time.h> int main() { pid_t p 阅读全文
posted @ 2022-11-10 09:01 戴骏 阅读(8) 评论(0) 推荐(0) 编辑
摘要: #截图 #代码 #include <stdio.h> #include <pthread.h> #include <time.h> void *Thread1(void *arg) { printf("线程1:"); srand((unsigned int)time(NULL)); int n = 阅读全文
posted @ 2022-11-10 09:00 戴骏 阅读(26) 评论(0) 推荐(0) 编辑
摘要: #问题 一、问题描述 要求: 1、允许多个读者可以同时对文件执行读操作。 2、只允许一个写者往文件中写信息。 3、任一写者在完成写操作之前不允许其他读者或写者工作。 4、写者执行写操作前,应让已有的读者和写者全部退出。 二、问题分析 读者写者问题最核心的问题是如何处理多个读者可以同时对文件的读操作。 阅读全文
posted @ 2022-11-09 14:39 戴骏 阅读(32) 评论(0) 推荐(0) 编辑
摘要: #一、实验截图 修改前 修改后 #二、实验代码 //更改前 #include <stdio.h> #include <pthread.h> #include <stdlib.h> #include <semaphore.h> #define NUM 5 int queue[NUM]; sem_t b 阅读全文
posted @ 2022-11-09 14:06 戴骏 阅读(9) 评论(0) 推荐(0) 编辑
摘要: #一、实验截图 #二、实验代码 #include <stdio.h> #include <stdlib.h> #include <pthread.h> #include <ctype.h> struct arg_set { char *fname; int count; }; struct arg_ 阅读全文
posted @ 2022-11-09 13:28 戴骏 阅读(16) 评论(0) 推荐(0) 编辑
摘要: #规格说明书 ##一、引言 (一)编写目的 电子公文系统的目的就是为了更好地管理文件,由于电子公文文件的特殊性,具有保密性和不可抵赖性的特点,是绝对不允许在网络传输过程中被截取和篡改的。本系统实现了公文的安全性、传输的高效性、操作的简便性、环境的适用性以及系统的集成性。此外,此系统提供图形化的电子公 阅读全文
posted @ 2022-11-06 15:40 戴骏 阅读(135) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 10 下一页