C++
iltgcl
语言ASM/C/C++/JAVA/KOTLIN 系统Linux Android QNX
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
倒车轨迹线
最近公司项目需要绘制倒车轨迹,特地研究并实现了此需求。由于公司项目,所以不公开源码了,总结如下: 原理:倒车轨迹线的实现方法(基于前人基础改进和验证)_c++ 中的符号->-优快云博客_倒车轨迹 图形库: ImGui ImGuizmo原创 2022-03-10 22:13:49 · 6192 阅读 · 3 评论 -
Callbacks (Bruce Eckel's Thinking in C++, 2nd Ed)
Callbacks Decouplingcode behavior Functor Command Strategy Observer Likethe other forms of callback: a hook point where you can change code. Differenceis in observer’s completely dynamic转载 2015-12-31 20:32:39 · 517 阅读 · 0 评论 -
自己常用的Makefile
开发时常用的Makefile,make编译链接,make run运行。(支持汇编 c c++ vala) #Program build mode : debug/release BUILD_MODE := debug #BUILD_MODE := re原创 2013-05-06 21:38:44 · 891 阅读 · 0 评论 -
C++函数中引用参数与指针参数分析
0. 采用的源代码如下,通过宏来控制 #define PTR_TEST #ifdef PTR_TEST void test_arg_ptr(int *ptr) { *ptr = 4; } #else void test_arg_ref(int& ref) { ref = 4; } #endif int main(int argc, char *argv[]) { i原创 2013-04-18 22:02:35 · 872 阅读 · 0 评论
分享