上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 29 下一页
摘要: https://www.cnblogs.com/yongdaimi/p/8257655.html 阅读全文
posted @ 2019-08-21 13:55 cicero 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 转自 https://www.xuebuyuan.com/2156374.html 该函数的作用是实现压缩视频的解码。在avcodec.h中的声明方式如下: 待解码的数据保存在avpkt->data中,大小为avpkt->size;解码完成后,picture用于保存输出图像数据。 该方法的各个参数: 阅读全文
posted @ 2019-08-21 10:31 cicero 阅读(6756) 评论(0) 推荐(0) 编辑
摘要: 如何用使用stringstream进行类型转换: 1. 下面例子为整型和sting类型的相互转换示例 整型转换为字符串类型 string NumberToString(int num){ stringstream ss; ss<<num; //像流中传值 string result; ss>>res 阅读全文
posted @ 2019-08-19 17:52 cicero 阅读(2995) 评论(0) 推荐(0) 编辑
摘要: 参考 https://www.cnblogs.com/god-of-death/p/7755250.html 参考 https://www.jianshu.com/p/6afdffe94d96 //threadpool.h #include <stdio.h> #include <stdlib.h> 阅读全文
posted @ 2019-08-14 19:44 cicero 阅读(277) 评论(0) 推荐(0) 编辑
摘要: server.c client.c 阅读全文
posted @ 2019-08-14 19:07 cicero 阅读(485) 评论(0) 推荐(0) 编辑
摘要: Qt的PushButton的常用的三种响应有pressed,released和clicked。 优先级:pressed>released>clicked 按下按钮pressed函数的内容,释放按钮先执行released函数的内容,再执行clicked函数的内容。 当鼠标光标在按钮上时,鼠标左键被按下 阅读全文
posted @ 2019-08-07 14:53 cicero 阅读(7416) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/wangjian8888/p/9379091.html 阅读全文
posted @ 2019-08-06 19:21 cicero 阅读(1186) 评论(0) 推荐(0) 编辑
摘要: hexdump /dev/event3 阅读全文
posted @ 2019-07-30 19:20 cicero 阅读(224) 评论(0) 推荐(0) 编辑
摘要: jsondata={"cmd":"meetingmemberlist","memberinfos":[{"name":"李","number":"668162","status":"Offline"},{"name":"66668888","status":"Offline"},{"name":"1 阅读全文
posted @ 2019-07-19 13:53 cicero 阅读(1626) 评论(0) 推荐(0) 编辑
摘要: 一、设置表单样式 table_widget->setColumnCount(4); //设置列数 table_widget->horizontalHeader()->setClickable(false); //设置表头不可点击(默认点击后进行排序) //设置表头内容 QStringList hea 阅读全文
posted @ 2019-07-19 12:29 cicero 阅读(5186) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 29 下一页