上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 37 下一页
摘要: opencv安装 sudo apt-get install python3-opencv 源码安装https://blog.csdn.net/u011922698/article/details/123268143 pip3 install opencv-python #安装opencv pip3 阅读全文
posted @ 2022-11-21 04:19 starc的miao 阅读(585) 评论(0) 推荐(0)
摘要: https://www.runoob.com/w3cnote/c-callback-function.html #include<stdio.h> int Callback_1(); int Callback_2(); int Callback_3(); int Handle(int (*Callb 阅读全文
posted @ 2022-11-21 03:29 starc的miao 阅读(23) 评论(0) 推荐(0)
摘要: /* Function:函数指针数组 */ #include <stdio.h> #include <stdlib.h> int func1(int n) { printf("func1: %d\n", n); return n; } int func2(int n) { printf("func2 阅读全文
posted @ 2022-11-21 03:28 starc的miao 阅读(25) 评论(0) 推荐(0)
摘要: /* Design Model:设计模式 Function:使用函数指针列表搭建程序框架 */ #include <stdio.h> #include <stdlib.h> int hello(int i); void hey(int i); int someother(void); void de 阅读全文
posted @ 2022-11-21 00:46 starc的miao 阅读(121) 评论(0) 推荐(0)
摘要: /* Linux API:read,write,open function:C实现CP Command */ #include <stdio.h> #include <stdlib.h> #include <unistd.h> // read #include <fcntl.h> // open # 阅读全文
posted @ 2022-11-20 23:47 starc的miao 阅读(72) 评论(0) 推荐(0)
摘要: https://www.runoob.com/design-pattern/chain-of-responsibility-pattern.html 阅读全文
posted @ 2022-11-20 23:34 starc的miao 阅读(27) 评论(0) 推荐(0)
摘要: yum install SDL 安装的是SDL2 include的文件也是SDL2 yum install xclock 中文教程:http://tjumyk.github.io/sdl-tutorial-cn/contents.html 编译命令:gcc -o demo main.c sdl2-c 阅读全文
posted @ 2022-11-20 20:27 starc的miao 阅读(513) 评论(0) 推荐(0)
摘要: /* Linux API: function:C实现进度条 */ #include <stdio.h> #include <stdlib.h> #include <string.h> #define NUM 101 #define STYLE '*' #define MAX 100 void pro 阅读全文
posted @ 2022-11-20 16:55 starc的miao 阅读(59) 评论(0) 推荐(0)
摘要: 桥接模式 NAT模式 仅主机模式 阅读全文
posted @ 2022-11-20 16:14 starc的miao 阅读(14) 评论(0) 推荐(0)
摘要: JDK Java Downloads | Oracle SDK Download Android Studio & App Tools - Android Developers (google.cn) https://www.androiddevtools.cn/ NDK https://devel 阅读全文
posted @ 2022-11-19 00:06 starc的miao 阅读(79) 评论(0) 推荐(0)
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 37 下一页