排序
【C++】如果我打算使用epoll进行开发,需要注意什么问题?(约498字)
文章目录最重要处理并发连接避免资源泄露补充理解epoll的工作原理理解epoll的模型理解epoll的API处理epoll的事件进行性能优化
【C++】C++的四种强制转换reinterpret_cast/const_cast/static_cast /dynamic_cast(约813字)
文章目录reinterpret_castconst_caststatic_cast < type-id > (expression)dynamic_cast举个例子