C Smart Pointers - Smart pointers for the (GNU) C programming language. [MIT] Hoard - Fast, Scalable, and Memory-efficient Malloc for Linux, Windows, and Mac. [Apache-2.0] website jemalloc - General purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency...
How to solve - error C2671: static member functions do not have 'this' pointers - using Visual Studio 2005 C++? (MFC) How to solve 'object of abstract class type "newFoo" is not allowed' and C2259 (cannot instantiate abstract class) error? How to solve Attempted an unsupported operation...
c-smart-pointers - Smart pointers for the (GNU) C programming language. [MIT] cxx-prettyprint - A pretty printing library for C++ containers. [Boost] DynaPDF - An easy-to-use PDF generation library. [Commercial] gcc-poison - A simple header file for developers to ban unsafe C/C++ functi...
事实上,智能指针能够做的还有很多事情,例如处理线程安全,提供写时复制,确保协议,并且提供远程交互服务。有能够为这些ESP (Extremely Smart Pointers)创建一般智能指针的方法,但是并没有涵盖进来。 智能指针的大部分使用是用于生存期控制,阶段控制。它们使用operator->和operator*来生成原始指针,这样智能指针看上去就像一个...
Learn More on Amazon.com Effective C by Robert C. Seacord will teach you how to write professional, secure, and portable C code that will stand the test of time and help strengthen the foundation of the world of computing. The world runs on code written in the C programming language, bu...
2.1 现代 C++:modern-cpp-tutorial modern-cpp-tutorial 是现代 C++ 教程,它的目的是提供关于现代 ...
A quick tutorial on implementing and debugging malloc, free, calloc, and realloc Bit twiddling hacks I do not know C Implementing smart pointers for the C programming language Inline functions in C Metaprogramming custom control structures in C ...
C Smart Pointers - Smart pointers for the (GNU) C programming language. [MIT] Hoard - Fast, Scalable, and Memory-efficient Malloc for Linux, Windows, and Mac. [GPL, commercial] website jemalloc - General purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concur...
LinkSmart Tutorial Event Manager Overview Intended Audienc e Purpose and Rol e of Event Manager PrerequisitesCenters, Solution
从leveldb中学到了很多东西,但是我觉得最值得学习的还是lsm,虽然它是一种古老的数据结构,但是leveldb让它老树开出了新花,理解它、并且能够自己用代码实现它,可以让自己的编程能力提高一个level,这也契合了leveldb这个名字。 如何肆无忌惮地写文件并且最大限度地保证文件的完整性,leveldb中对于lsm-tree的实现就是最...