上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: QFile file(strFile); //默认清除文件原内容,不存在则创建新文件 Append表示在文件末尾追加内容 file.open(QIODevice::WriteOnly | QIODevice::Text); { QString s; file.write(s.toLatin1()); } file.close() 阅读全文
posted @ 2019-01-22 21:07 雪落梅藏 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 之前遇到矩阵输出结果错误,想打印出矩阵看一下。qDebug()无法输出后不换行,cout等无法再控制台输出。最后将要输出的内容转换为字符串,保存到文件中。 vs关闭警告:属性->C/C++->高级->禁用特定警告 阅读全文
posted @ 2019-01-22 21:02 雪落梅藏 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 获取文件的绝对值路径 QFileInfo info(QStringLiteral("../GongCheng1/file/阿达.txt")); QString strFile=info.absoluteFilePath(); 阅读全文
posted @ 2019-01-06 11:11 雪落梅藏 阅读(8486) 评论(0) 推荐(0) 编辑
摘要: 教程: 1、打开(最好是管理员身份)本机工具命令提示(x86),进入解压的源码后的目录 输入lib /def:libfftw3-3.def。然后会生成libfftw3-3.dll。 2、使用:包含 fftw.h和 libfftw3-3.dll即可。 几次编译使用出现的问题 1、第一台电脑编译,ok; 阅读全文
posted @ 2019-01-02 22:31 雪落梅藏 阅读(2210) 评论(0) 推荐(0) 编辑
摘要: #include #include "C:\Users\Administrator\Desktop\fftw\fftw-3.3.4-dll32\fftw3.h" #include "D:\Qt\Eigen\Dense" #include #include #include using namespace std; // using namespace fftw_complex; #d... 阅读全文
posted @ 2018-12-31 21:57 雪落梅藏 阅读(1027) 评论(0) 推荐(0) 编辑
摘要: 一、QWT编译,最后可以在设计师中使用 https://blog.csdn.net/imkelt/article/details/51234230 二、Qwtplot3D编译使用 参考多个教程: 1、编译qwt3d 1)错误No rule to target 'Makefile.Debug'. : 阅读全文
posted @ 2018-12-26 21:58 雪落梅藏 阅读(1588) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_35703848/article/details/79819854 1、 2、使用QGLWidget 阅读全文
posted @ 2018-12-26 21:39 雪落梅藏 阅读(3975) 评论(0) 推荐(0) 编辑
摘要: 有过几次oracle监听服务无法启动,导致plsql无法连接oracle的情况。 1、使用Net Configuration Assiant,重新配置监听 2、使用Net Configuration Assiant,重新配置监听,失败。最后发现是监听的ora文件中的IP错了,在没有插网线的情况下只能 阅读全文
posted @ 2018-12-26 21:03 雪落梅藏 阅读(3877) 评论(0) 推荐(0) 编辑
摘要: 提升的类,好像不可以使用UI界面 阅读全文
posted @ 2018-12-10 20:30 雪落梅藏 阅读(1391) 评论(0) 推荐(0) 编辑
摘要: #include "widget.h" #include #include Widget::Widget(QWidget *parent) : QWidget(parent) { QPushButton *button=new QPushButton(QString::fromLocal8Bit("Button"),this); QVBoxLayout *layout... 阅读全文
posted @ 2018-12-04 21:54 雪落梅藏 阅读(277) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页