Qt提供了一些可以复用的对话框类型,这些对话框类型全部继承与QDialo类。 Qt中标准对话框遵循相同的使用方法: //定义对话框对象 DialogType dlg(this); //设置对话框属性 dlg.setPrpertyXXX(value); if(dlg.exec() == DialogT ...
分类:
其他好文 时间:
2020-02-09 09:53:10
阅读次数:
55
运行Git 在下载完成后,在开始菜单中找到 Git Bash,会打开一个命令控制窗口。 建立一个本地仓库 在Git Bash 打开的窗口中先进入到自己想要保存的地方,利用 cd 命令进入位置。 为了避免之后在提交的时候出现:warning: LF will be replaced by CRLF i ...
1 执行bin目录下的脚本启动查看具体的报错信息 PS E:\Program Files\JetBrains\IntelliJ IDEA 2019.3.2\bin> .\idea.bat OpenJDK 64-Bit Server VM warning: Option UseConcMarkSwee ...
分类:
其他好文 时间:
2020-02-07 19:09:15
阅读次数:
7840
复平面中的旋转矩阵 FBI WARNING 以下内容没有找到任何参考资料,纯属个人想法。 如有错误,请多包含。 (这部分太过瞎搞所以另起一文 正文 普通平面上的旋转矩阵如下: $$ \begin{bmatrix} cos\theta & sin\theta\\ sin\theta & cos\the ...
分类:
其他好文 时间:
2020-02-05 20:01:43
阅读次数:
165
warning: implicit declaration of function 'func1' [-Wimplicit-function-declaration] 这个警告是因为func1函数所在的 .h 文件没有生成对应的 .o 文件,即函数所在文件没有编译。解决办法就是加上include. ...
分类:
其他好文 时间:
2020-02-05 16:20:23
阅读次数:
84
背景: 在vm中的linux中,安装mysql5.6的过程中,出现了缺少依赖的问题,具体报错如下。 报错一: [root@node0 local]# rpm -ivh MySQL-server-5.6.47-1.el7.x86_64.rpm warning: MySQL-server-5.6.47- ...
分类:
其他好文 时间:
2020-02-04 18:24:37
阅读次数:
127
idea启动项目的时候报了如下错误:OpenJDK 64-Bit Server VM warning: Sharing is only supported for boot loader classes because bootstrap classpath has been appended 解决 ...
分类:
移动开发 时间:
2020-02-03 20:54:58
阅读次数:
259
Centos登录Mysql时忘记密码解决办法: 1.停止Mysql服务(在mysql目录下) ./support-files/mysql.server stop 2.修改配置文件/etc/my.cnf 在[mysqld]下添加skip-grant-tables 意思是忽略密码 保存并退出 3.启动M ...
分类:
数据库 时间:
2020-02-03 14:00:58
阅读次数:
98
const path = require("path"); const resolve = function(dir) { return path.join(__dirname, dir); }; module.exports = { publicPath: "./", outputDir: "di ...
分类:
Web程序 时间:
2020-02-03 11:34:43
阅读次数:
123
``` #pragma warning(disable:4996) #include #include #include #define HDC_EDIT_1 0x100 #define HDC_BUTTON_1 0x101 #define HDC_BUTTON_2 0x102 //全局变量声明 H... ...