2018年8月28日
摘要: 参考:https://www.cnblogs.com/jikexianfeng/p/5729168.html 函数及参数意义 socket int socket(int domain, int type, int protocol) domain:即协议域,又称为协议族(family)。常用的协议族 阅读全文
posted @ 2018-08-28 22:32 SunnyPoem 阅读(269) 评论(0) 推荐(0)
摘要: Makefile基础 一.Makefile基础 1.1 步骤:编译-链接 编译(compile):把源文件编译成中间目标文件(object file/.o .obj文件) 链接(link):将中间目标文件合成执行文件 库文件(library file):中间目标文件太多,将中间目标文件打包。(.li 阅读全文
posted @ 2018-08-28 22:28 SunnyPoem 阅读(614) 评论(0) 推荐(0)