上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页
摘要: https://blog.csdn.net/weixin_42080201/article/details/80312607 阅读全文
posted @ 2019-11-11 15:00 Truman001 阅读(453) 评论(0) 推荐(0)
摘要: 1 如下表格,根据输入输出确定计算机图形学和数字图像处理的区别 2 根据下图,确定各个学科的联系与区别 阅读全文
posted @ 2019-11-03 15:05 Truman001 阅读(525) 评论(0) 推荐(0)
摘要: std::string test_str = "year,mon,day,hh"; std::vector res = splitwithstr(test_str, ','); for (int i=0; i splitwithstr(std::string &str,char ch) { std::string tmpstr = str+ch; std::vector res;... 阅读全文
posted @ 2019-10-21 19:46 Truman001 阅读(3945) 评论(0) 推荐(0)
摘要: QScrollBar *vScrollBar = m_pLogListWidget->verticalScrollBar(); if (vScrollBar != NULL) { vScrollBar->setValue(vScrollBar->maximum()); } 阅读全文
posted @ 2019-10-21 19:40 Truman001 阅读(1593) 评论(0) 推荐(0)
摘要: 下面两种方法均可让对话框的问号按钮去掉,如果其中一种不生效,可更换另一种 1 方法一 2 方法二 阅读全文
posted @ 2019-10-21 19:39 Truman001 阅读(4066) 评论(0) 推荐(0)
摘要: 当更改完Qt的界面控件大小时,如果没有更新,可调用下列函数进行刷新界面 1 void QWidget::update() 2 void QWidget::repaint() 3 void QWidget::showNormal() 4 void resize(const QSize &) 例:thi 阅读全文
posted @ 2019-10-21 19:37 Truman001 阅读(5521) 评论(0) 推荐(0)
摘要: 1 如何查看自己电脑上opencv版本 2 阅读全文
posted @ 2019-10-06 16:14 Truman001 阅读(112) 评论(0) 推荐(0)
摘要: 1 添加头文件#include <thread> 2 使用全局函数作为线程函数 3 使用类成员函数作为线程函数 4 使用lambda表达式作为线程函数 结果如下: 5 leetcode练习 题目描述: 阅读全文
posted @ 2019-08-30 17:17 Truman001 阅读(866) 评论(0) 推荐(0)
摘要: 待添加 阅读全文
posted @ 2019-08-30 12:38 Truman001 阅读(186) 评论(0) 推荐(0)
摘要: QString dir_str = "E:\CodeTest"; // 检查目录是否存在,若不存在则新建 QDir dir; if (!dir.exists(dir_str)) { bool res = dir.mkpath(dir_str); qDebug() << "新建目录是否成功" << r 阅读全文
posted @ 2019-08-29 15:11 Truman001 阅读(7554) 评论(2) 推荐(1)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页