02 2020 档案

摘要:原文链接:https://blog.csdn.net/chenfengdejuanlian/article/details/53761004 使用WireShark抓包,选择TCP报文,TCP是一种安全的协议,在网络出现状况时也能安全稳定的传输数据,但是在网络出现问题时tcp报文中会有很多中情况导致 阅读全文
posted @ 2020-02-19 18:56 wywdahai 阅读(6500) 评论(0) 推荐(0)
摘要:转自:https://www.cnblogs.com/ywliao/articles/8116622.html new与malloc的10点区别 1. 申请的内存所在位置 new操作符从自由存储区(free store)上为对象动态分配内存空间,而malloc函数从堆上动态分配内存。自由存储区是C+ 阅读全文
posted @ 2020-02-11 08:41 wywdahai 阅读(236) 评论(0) 推荐(0)
摘要:参考:https://blog.csdn.net/hansionz/article/details/81947834 二叉树的基础操作总结https://blog.csdn.net/hansionz/article/details/81908134队列的基础操作总结https://blog.csdn 阅读全文
posted @ 2020-02-10 15:52 wywdahai 阅读(172) 评论(0) 推荐(0)
摘要:Reactor模式详解 转自:https://www.cnblogs.com/winner-0715/p/8733787.html 在学习Reactor模式之前,我们需要对“I/O的四种模型”以及“什么是I/O多路复用”进行简单的介绍,因为Reactor是一个使用了同步非阻塞的I/O多路复用机制的模 阅读全文
posted @ 2020-02-06 14:14 wywdahai 阅读(400) 评论(0) 推荐(0)