- 博客(7)
- 资源 (1)
- 收藏
- 关注

原创 SLAM预备知识(1):Cmake 构建系统
1.前言 我对Cmake的理解:它也是一种变量和指令组成的编程语言,它描述了文件构建过程的程序。 2. 语言层面2.1 常用变量 2.2 常用指令 3.常见用法3.1 添加外部共享库和头文件时3.1.1 场景解释 当我们使用一些如opencv,pcl等外部库的时候,编译时常常需要添加外部库的共享库和外部头文件...
2018-12-05 10:10:57
148
原创 C++ 复杂类型的声明
方法一 :使用类型别名1) c版本typedef string strT[10];strT &Get_String(void);2) c++11版本using strT1 = string[10];strT1 &Get_String(void);3)c版本定义法string (&Get_String(void))[10];4)C+...
2018-12-05 10:16:08
372
原创 kzalloc kmalloc
/** * kzalloc - allocate memory. The memory is set to zero. * @size: how many bytes of memory are required. * @flags: the type of memory to allocate (see kmalloc). */static inline void ...
2018-12-05 10:12:03
187
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人