上一页 1 2 3 4 5 6 7 ··· 52 下一页
摘要: 目录导语一、内存管理1、C++内存管理详解1.1 内存分配方式1.1.1 分配方式简介1.1.2 明确区分堆与栈1.1.3 堆和栈究竟有什么区别?1.2 控制C++的内存分配1.2.1 重载全局的new和delete操作符1.2.2 为单个的类重载 new[ ]和delete[ ]1.3 常见的内存 阅读全文
posted @ 2023-10-29 22:38 黄河大道东 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 目录0、左值与右值的理解左值和右值的概念左值引用和右值引用1. std::move1.1 函数原型1.2 参数讨论1.3 通用引用1.4 返回值1.5 std::move的常用例子1.5.1 用于vector添加值1.5.2 用于unique_ptr传递1.6 再说转移对象控制权2. std::fo 阅读全文
posted @ 2023-10-27 10:37 黄河大道东 阅读(36) 评论(0) 推荐(0) 编辑
摘要: json库 (用的多)https://github.com/nlohmann/json https://github.com/simdjson/simdjson https://github.com/Tencent/rapidjson https://github.com/open-source-p 阅读全文
posted @ 2023-10-22 23:30 黄河大道东 阅读(34) 评论(0) 推荐(0) 编辑
摘要: github仓库地址:https://github.com/openssl/openssl 官网下载地址:https://www.openssl.org/source/old/ # 下载特定版本 wget https://www.openssl.org/source/old/3.0/openssl- 阅读全文
posted @ 2023-10-22 23:27 黄河大道东 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 实际上还是建议用Ubuntu进行编译,要方便的多 drogon编译安装:https://zhuanlan.zhihu.com/p/601632372 drogon编译安装:https://wenku.baidu.com/view/4408ed4e84c24028915f804d2b160b4e777 阅读全文
posted @ 2023-10-22 23:26 黄河大道东 阅读(138) 评论(0) 推荐(0) 编辑
摘要: # cmake官网 https://cmake.org/ # cmake各个版本源码仓库 https://cmake.org/files/ # 下载 wget https://cmake.org/files/v3.21/cmake-3.21.1.tar.gz # 解压 tar xvf cmake-3 阅读全文
posted @ 2023-10-20 22:33 黄河大道东 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 目录概念一、std::auto_ptr二、std::unique_ptr常用函数自定义智能指针对象持有的资源的释放函数三、std::shared_ptr常用函数四、std::enable_shared_from_this五、std::weak_ptr常用函数智能指针使用注意事项智能指针的简单实现 概 阅读全文
posted @ 2023-10-18 23:19 黄河大道东 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 项目地址 https://github.com/sewenew/redis-plus-plus https://github.com/redis/hiredis # 1、编译安装 hiredis 项目 wget https://github.com/redis/hiredis/archive/ref 阅读全文
posted @ 2023-10-16 21:48 黄河大道东 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 目录MQTT介绍MQTT(Mosquitto)安装与测试MQTT(Eclipse Paho)库安装与实例 MQTT介绍 MQTT是一个基于客户端-服务器的消息发布/订阅传输协议。 MQTT (Message Queuing Telemetry Transport) 是一种轻量级的消息传输协议,通常用 阅读全文
posted @ 2023-10-16 00:25 黄河大道东 阅读(1219) 评论(0) 推荐(0) 编辑
摘要: 安装虚拟机16.x 正常一路安装Ubuntu20.04,选择最小化安装即可 VmwareTools工具安装 确保宿主机开启了VMware的以下五个相关的服务,出现无法启动的话就看一下VMware中虚拟网络编辑器中的配置,看一下是不是关闭了某些服务 VMware Authorization Servi 阅读全文
posted @ 2023-10-14 18:03 黄河大道东 阅读(92) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 52 下一页