上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 21 下一页
摘要: 将一个字符串string 通过分隔符存入到一个vector中。 vector<string> split(const string &s, const char *delim) { vector<string> ret; size_t last = 0; auto index = s.find(de 阅读全文
posted @ 2022-07-19 15:12 泽良_小涛 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 随机数的产生。 https://blog.csdn.net/qq_41904635/article/details/104462373 阅读全文
posted @ 2022-07-18 12:00 泽良_小涛 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 将左值变为右值使用。 https://blog.csdn.net/Huoon/article/details/113917219 阅读全文
posted @ 2022-07-16 15:08 泽良_小涛 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 1.RTSP协议的处理在 RtspSplitter::onRecvHeader中进行。 2.RTSP协议中SDP的处理在RtspSplitter::onRecvContent中进行。 3.收到的RTSP数据在Parser类中Parse函数解析后存到和相关的成员变量中,各个key和value的值通过函 阅读全文
posted @ 2022-07-14 14:37 泽良_小涛 阅读(301) 评论(0) 推荐(0) 编辑
摘要: map不允许重复,multimap允许重复。 https://blog.csdn.net/CV_Jason/article/details/83818549。 阅读全文
posted @ 2022-07-14 13:19 泽良_小涛 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 函数后面加override关键字的,继承类中必须重写。 https://www.qb5200.com/article/324176.html 阅读全文
posted @ 2022-07-14 13:13 泽良_小涛 阅读(244) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_41694204/article/details/82620467 区分不区分在小写。 阅读全文
posted @ 2022-07-14 10:38 泽良_小涛 阅读(37) 评论(0) 推荐(0) 编辑
摘要: C++11新特性之十一:emplace 阅读全文
posted @ 2022-07-13 15:29 泽良_小涛 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 1.CMake编译时支持GDB调试 阅读全文
posted @ 2022-07-13 13:56 泽良_小涛 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 1.【杂项学习】linux下使用Cmake+GDB断点调试 2.GDB gdb 调试 阅读全文
posted @ 2022-07-13 13:47 泽良_小涛 阅读(27) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 21 下一页