摘要:
现代 C++ 开发 https://github.com/NotfriendAtAll/Modern-cpp-create/tree/main 目录现代 C++ 开发Complier&&IDE一 主流编译器特性支持(C++23)二 IDE 与编辑器推荐三 提升开发效率的插件工具链一 常用工具链以及包 阅读全文
摘要:
https://queue.acm.org/detail.cfm?id=1454462 Real-world Concurrency Chances are you won’t actually have to write multithreaded code. But if you do, som 阅读全文
摘要:
你可能下意识地以为 full binary tree 就是 满二叉树,毕竟直译过来就是如此,但事实并非如此。 以下内容来自 wikipedia: A full binary tree (sometimes referred to as a proper, plane, or strict binar 阅读全文
摘要:
原文链接 EXCEPTION HANDLING: A FALSE SENSE OF SECURITY 原文 I suspect that most members of the C++ community vastly underestimate the skills needed to progr 阅读全文
摘要:
什么是 ABI 定义 [wiki] An application binary interface (ABI) is an interface exposed by software that is defined for in-process machine code access. Often, 阅读全文
摘要:
比特币、挖矿、区块链 1. 原理概述 比特币是第一个加密货币。类似比特币等加密货币,它们的支柱是一个去中心化的、无需信任的验证系统,它依赖数学和密码学。 加密货币的交易实体是一个账本(上的记录),货币的实体就是交易的历史(通过交易历史计算某个人的余额)。 对于账本上的一条记录,例如 A pays B 阅读全文