上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 123 下一页
摘要: 摘自:https://blog.csdn.net/m0_37697335/article/details/83867199 因为外界总会对电路存在或多或少的干扰,对于数字信号,很可能导致传输的数据出现千差万别。对于很多需要传输数据的场合,尤其是一些数据可能会影响一些硬件的动作(诸如嵌入式的一些设备、 阅读全文
posted @ 2021-09-03 11:43 LiuYanYGZ 阅读(3671) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> //在mingw环境下,xmlfree 等可能出现问题,见http://blog.csdn.net/king_on/article/details/7543577 #define IN_LIBXML #include <l 阅读全文
posted @ 2021-08-26 17:15 LiuYanYGZ 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 摘自:https://blog.csdn.net/swj9099/article/details/85292444 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 #include <unistd.h> 5 #in 阅读全文
posted @ 2021-08-11 14:47 LiuYanYGZ 阅读(871) 评论(0) 推荐(0) 编辑
摘要: 摘自:https://blog.csdn.net/swj9099/article/details/85292444 1 #pragma once 2 #include <stdio.h> 3 #include <stdlib.h> 4 #include <string.h> 5 #include < 阅读全文
posted @ 2021-08-11 14:37 LiuYanYGZ 阅读(748) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/nemo2011/article/details/104519559 curl报错如下:code:1,error:Unsupported protocol 原因: 依赖的libcurl.so中不支持sftp 协议 解决方法: 我们下载 curl-7. 阅读全文
posted @ 2021-08-10 20:40 LiuYanYGZ 阅读(848) 评论(0) 推荐(0) 编辑
摘要: sscanf遇到回车换行认为字符串结束,怎样让它忽略这些回车换行继续搜索整个字符串? sscanf遇到空格继续? 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 5 6 char *c = "/o-ran-fm:alarm-notif/fault-id= 阅读全文
posted @ 2021-08-06 17:29 LiuYanYGZ 阅读(268) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_35151346/article/details/90740508 阅读全文
posted @ 2021-07-23 09:29 LiuYanYGZ 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 摘自:https://blog.csdn.net/anshiquanshu/article/details/118683305 VS Code的Error: Running the contributed command: '_workbench.downloadResource' failed解决 阅读全文
posted @ 2021-07-19 14:56 LiuYanYGZ 阅读(4012) 评论(0) 推荐(0) 编辑
摘要: 摘自:https://blog.csdn.net/yhc166188/article/details/81587442 大家知道,析构函数是为了在对象不被使用之后释放它的资源,虚函数是为了实现多态。那么把析构函数声明为vitual有什么作用呢? 直接的讲,C++中基类采用virtual虚析构函数是为 阅读全文
posted @ 2021-06-19 02:55 LiuYanYGZ 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 1 #define _GNU_SOURCE 2 3 #include <stdio.h> 4 #include <string.h> 5 #include <stdlib.h> 6 #include <errno.h> 7 #include <unistd.h> 8 9 #define TEST_T 阅读全文
posted @ 2021-06-18 21:18 LiuYanYGZ 阅读(106) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 123 下一页