摘要:
首先展示一下效果: 界面通过Qt设计师做出来的。 主要有两个类。 首先主函数: 实现UI循环。 第一个类,主窗体类: 因为是用的Qt设计师,所以函数名有点挫。 然后是扫描线程类,用来扫描端口: 类实现: #include "mainwindow.h" #include "ui_mainwindow. 阅读全文
摘要:
首先是向tableview中添加内容 然后是获取某一选中行的信息 获取cell中的内容 阅读全文
摘要:
在线程中定义一个信号量 QMutex pause; 把run()函数中循环执行的部分用信号量pause锁住: void run() { while(1) { pause.lock(); //循环执行的内容,比如视频播放 pause.unlock(); } } 在主线程(UI线程)中,如果想暂停线程执 阅读全文
摘要:
原文链接:Qt经典出错信息之undefined reference to `vtable for classname 这个出错信息太常见了,用过Qt两个月以上的朋友基本上都能自己解决了,因为太经典了,可以给新手参考。 出错信息一般类似:undefined reference to `vtable f 阅读全文
摘要:
转载:http://blog.csdn.net/ei__nino/article/details/7297791 Qt中 int ,float ,double转换为QString 有两种方法 1.使用 QString::number(); 如: [cpp]view plain copy print? 阅读全文
摘要:
Fence Repair Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 42979 Accepted: 13999 Description Farmer John wants to repair a small length o 阅读全文
摘要:
切片图,可以做多维图 plot3函数进行三维做图,quiver3函数进行抖动: 阅读全文
摘要:
Saruman's Army Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 8477 Accepted: 4317 Description Saruman the White must lead his army along a 阅读全文
摘要:
python操作excel表格(xlrd/xlwt)转载:http://www.cnblogs.com/zhoujie/p/python18.html 最近遇到一个情景,就是定期生成并发送服务器使用情况报表,按照不同维度统计,涉及python对excel的操作,上网搜罗了一番,大多大同小异,而且不太 阅读全文