摘要:
主线程读socket,子线程写socket #include <arpa/inet.h> #include <errno.h> #include <netinet/in.h> #include <pthread.h> #include <sys/select.h> #include <sys/soc 阅读全文
摘要:
链接:将各种代码和数据片段收集并组合成一个单一文件的过程,这个文件可被加载到内存并执行。 链接可执行于编译时、加载时、运行时。 代码示例: 静态链接: 编译器驱动程序 gcc 又可细分为:预处理器 cpp、编译器 ccl、汇编器 as、链接器 ld 静态链接 ld这样的静态链接器生成一个完全可链接的 阅读全文