摘要: 要点: 1、要注意末尾的 #include "main.moc",否则编译报错 2、槽函数可以为实例成员函数 3、槽函数可以为静态成员函数 4、槽函数可以为lamda函数 5、一个信号可以连接多个槽函数 6、一个槽函数也可以被多个信号连接 #include <QCoreApplication> #i 阅读全文
posted @ 2024-08-13 21:52 坚持梦想的蜗牛 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 文章来源(侵联删): https://blog.csdn.net/shenaisi/article/details/104727187 using System; using System.Collections.Generic; using System.Runtime.InteropServic 阅读全文
posted @ 2024-08-12 10:58 坚持梦想的蜗牛 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 【持续更新】 【2024-07-19】 新建 对象初始化语句的执行总是在构造函数执行之后,如: class Point { public int X = 1; public int Y = 2; public Point(int x, int y) { X = x; Y = y; } } class 阅读全文
posted @ 2024-07-19 21:51 坚持梦想的蜗牛 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 基于全网段广播的代码示例,要点主要有两个: (1)设置socket属性SO_BROADCAST (2)发送方添加广播255.255.255.255的路由,不然会产生“Network is unreachable”错误 ip route add 255.255.255.255 dev eth0 示例代 阅读全文
posted @ 2024-07-18 11:34 坚持梦想的蜗牛 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://blog.csdn.net/bluewn/article/details/104325594 当你升级或重新安装Windows时,你的旧文件可能会被放在C:驱动器上的一个文件夹中,这个文件夹的标签是Windows.old。 这对于检索旧文件非常有用,但它会占用计算机上的一大 阅读全文
posted @ 2024-07-10 15:46 坚持梦想的蜗牛 阅读(129) 评论(0) 推荐(0) 编辑
摘要: linux 配置 Device Drivers > Network device support > USB Network Adapters [*] Multi-purpose USB Networking Framework [*] Simple USB Network Links (CDC E 阅读全文
posted @ 2024-06-16 22:04 坚持梦想的蜗牛 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 原文出自于https://www.cnblogs.com/lanyangsh/p/10926806.html TCP是面向连接的,一般情况,两端的应用程序可以通过发送和接收数据得知对端的存活。 当两端的应用程序都没有数据发送和接收时,如何判断连接是否正常呢? 这就是SO_KEEPALIVE的作用。 阅读全文
posted @ 2024-05-27 18:22 坚持梦想的蜗牛 阅读(101) 评论(0) 推荐(0) 编辑
摘要: ubifs作为根文件系统挂载时,遇到了一些不同类型的错误,整理一下问题的排查思路 UBIFS (ubi0:0): Mounting in unauthenticated mode UBIFS (ubi0:0): background thread "ubifs_bgt0_0" started, PI 阅读全文
posted @ 2024-05-03 02:35 坚持梦想的蜗牛 阅读(811) 评论(0) 推荐(0) 编辑
摘要: 源码依赖 依赖 gcc pcre pcre-devel zlib zlib-devel 正常编译三步曲 启停 ./nginx ./nginx -s stop 快停 ./nginx -s quit 慢停,完成已接受的链接后关闭 ./nginx -s reload 重新加载配置 阅读全文
posted @ 2024-04-30 01:34 坚持梦想的蜗牛 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 准备环境 cmake https://cmake.org/download visual studio https://visualstudio.microsoft.com/zh-hans/downloads openssl https://slproweb.com/products/Win32Op 阅读全文
posted @ 2024-03-25 01:05 坚持梦想的蜗牛 阅读(168) 评论(0) 推荐(0) 编辑