Tag:c
All the articles with the tag "c".
cpp基础
Posted on:June 26, 2022 at 04:52 PM## Storage duration 这个是描述变量的生命周期的,分为四类 - automatic: 生命周期在代码块内,在代码块内分配内存,在代码块内析构 - static:生命周期是整个程序。
使用gtest
Posted on:May 20, 2022 at 06:12 AM## 背景 单元测试是一个很基础的功能,会使用单元测试是一个维护良好的程序的基础。 所以通过单元测试维护一个程序也是必然。 ## gtest quick start ## 相关阅读 - ht
c字节对齐
Posted on:May 11, 2021 at 10:34 AM``` _attribute_((packed)) ``` 你会在redis的`sds.h`看到这个gcc的扩展属性,这个属性是拿来干嘛呢?其实是拿来压缩字段长度的 ``` This attrib
c99柔性数组
Posted on:April 14, 2021 at 09:39 AMAs a special case, the last element of a structure with more than one named member may have an inc
c++ 标准库的vector
Posted on:March 15, 2021 at 12:46 PMc++的标准库也没有银弹,也是写出来的,至少消除了我的恐惧 ### 相关阅读 - https://github.com/gcc-mirror/gcc/blob/master/libstdc%2B%2
c auto cast
Posted on:July 7, 2020 at 01:25 PM