相关文章
C++特殊工具与技术(上)
一、控制内存分配
某些应用程序对内存分配有特殊需求,无法直接应用标准内存管理机制。需要自定义内存分配的细节。
1、重载 new 和 delete
void* operator new(std::size_t size) {// 自定义内存分配逻辑void* ptr std::malloc(size);if (!ptr) {throw std::bad…
建站知识
2025/4/4 13:38:35
一、编写hello world
1、开发环境
(1)操作系统:Linux。
(2)编译:GCC编译。
2、安装GCC
(1)我们安装的Linux是Ubuntu,默认是不带GCC的。
(2)安装GCC命令。
apt-get install gcc
3、使用vim编写hello world
#include <stdio.h>int main()
{printf(&qu…
建站知识
2025/4/6 5:19:12
leetcode283移动零
题目:
给定一个数组 nums,编写一个函数将所有 0 移动到数组的末尾,同时保持非零元素的相对顺序。
请注意 ,必须在不复制数组的情况下原地对数组进行操作。 示例 1:
输入: nums [0,1,0,3,12]
输出: [1,3,12,0,0]示例 2:
输入:…
建站知识
2025/4/6 5:21:40
Android versions (Android 版本)
Android versions (Android 版本) All Android releases https://developer.android.com/about/versions
Android 1.0 G1
Android 1.5 Cupcake
Android 1.6 Donut
Android 2.0 Eclair
Android 2.2 Froyo
Android 2.3 Gingerbread
Android 3.0 Honeycomb
Android 4.0 Ic…
建站知识
2025/3/22 13:54:16
〔021〕Stable Diffusion 之 提示词反推、自动补全、中文输入 篇
✨ 目录 🎈 反推提示词 / Tagger🎈 反推提示词 Tagger 使用🎈 英文提示词自动补全 / Booru tag🎈 英文提示词自动补全 Booru tag 使用🎈 中文提示词自动补全 / tagcomplete🎈 中文提示词自动补全 tagcomple…
建站知识
2025/4/2 6:25:16
分布式 - 服务器Nginx:基础系列之Nginx静态资源优化配置指令sendfile | tcp_nopush | tcp_nodelay
文章目录 1. sendfile 指令2. tcp_nopush 指令3. tcp_nodelay 指令 1. sendfile 指令
请求静态资源的过程:客户端通过网络接口向服务端发送请求,操作系统将这些客户端的请求传递给服务器端应用程序,服务器端应用程序会处理这些请求ÿ…
建站知识
2025/3/30 10:04:31