undefined

c++ 对象在堆上创建,还是在栈上创建:https://www.devbean.net/2014/02/cpp-create-object-on-heap-or-stack/

c++ 静态局部对象:https://www.cnblogs.com/stemon/p/4593424.html

c++ 日志库:https://github.com/amrayn/easyloggingpp

c++ 线程池:https://github.com/vit-vit/CTPL

c++ 占位符 std::placeholders :https://blog.csdn.net/nanjiye/article/details/52164279

c++11之 packaged_task:https://blog.csdn.net/c_base_jin/article/details/79541301

c++ 的 auto:https://zhuanlan.zhihu.com/p/343507680

snprintf 与 vsnprintf 函数对比:https://langzi989.github.io/2018/01/01/C%E4%B8%ADsnprintf%E4%B8%8Evsnprintf%E5%87%BD%E6%95%B0/

linux 系统调用和错误处理: http://www.daileinote.com/computer/linux_sys/02

c++ 的一些问题需学习:

1
2
3
NO_RETURN core 的问题
explict virtul override 关键字
const 在 & 的左右 语义

c++11 的 enable_shared_from_this 使用:https://blog.csdn.net/caoshangpa/article/details/79392878

c++ 中 define 用法详情:https://blog.csdn.net/u012611878/article/details/52534622

c++模版的偏特化和全特化:https://harttle.land/2015/10/03/cpp-template.html

c++ 函数的默认参数,应该在头文件里声明

bind参数绑定:https://blog.csdn.net/qq_42956179/article/details/115518826

weak_ptr 弱引用智能指针:https://blog.csdn.net/qq_38410730/article/details/105903979

四种强制类型转换:https://blog.csdn.net/ydar95/article/details/69822540

void* 指针和数组指针之间的转换:https://www.cnblogs.com/caculas22/p/void_pointer.html

gdb 设置 LD_PERLOAD:https://stackoverflow.com/questions/10448254/how-to-use-gdb-with-ld-preload

宏 __cplusplus 详解:https://www.cnblogs.com/wfwenchao/p/5825134.html

sscanf 函数解析:
https://juejin.cn/post/7128198754284339230
https://www.cnblogs.com/wubiyu/archive/2008/11/20/1337835.html
https://blog.csdn.net/qq_695538007/article/details/11999471
https://blog.csdn.net/fanjiule/article/details/80966105

容器的 emplace 方法原理解析:https://www.whcsrl.com/blog/1005976

读取文件的不同方式性能对比:https://www.igiftidea.com/article/12569594373.html

c++标准 IO 的底层实现:https://segmentfault.com/a/1190000039972883