大脑的维修艺术

第 34 期 50 字日更来啦, 从今天开始截至到 12 月 30 号 : 要求文字 50 字以上,主题随意,不知道写什么就写当天感受,目的跨出第一步 开始时间:2024-10-

c++编程思想

来源: c++编程思想(两卷合订本) 提问的方式 Q1 动态转换和静态转换的区别是什么? 小王第一次回答 一头雾水呀,平时没有自己用过, 唯一有印象的是写线

c++编程思想

代码位置: 原子的一定是线程安全的吗? To satisfy thread safety requirements, the reference counters are typically incremented using an equivalent of std::atomic::fetch_add with std::memory_order_relaxed (decrementing requires stronger ordering to safely destroy the control block). https://blog.noct.site/2024/03/22/gcc13_shared_ptr/ https://github.com/gcc-mirror/gcc/blob/master/libstdc++-v3/include/bits/shared_ptr.h C++一分钟之-原子操作与线程安全 https://cloud.tencent.com/developer/article/2432619 Q14 三句话

man

帮助文档 内存管理 1 man malloc http://man7.org/linux/man-pages/man3/malloc.3.html Thread safety (多个线程可以同时执行) arena 1 2 3 4 5 To scalably handle memory allocation in multithreaded applications, glibc creates additional memory allocation arenas if mutex contention is detected. Each arena is a large region of memory that is internally allocated by the system (using brk(2) or mmap(2)),

提高工作效率的几个工具

代码提交工具 一. 文件共享利器——Samba 安装配置 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45