码迷,mamicode.com
首页 >  
搜索关键字:warning    ( 3842个结果
Qt 标准对话框
Qt提供了一些可以复用的对话框类型,这些对话框类型全部继承与QDialo类。 Qt中标准对话框遵循相同的使用方法: //定义对话框对象 DialogType dlg(this); //设置对话框属性 dlg.setPrpertyXXX(value); if(dlg.exec() == DialogT ...
分类:其他好文   时间:2020-02-09 09:53:10    阅读次数:55
Git 学习 windows 10
运行Git 在下载完成后,在开始菜单中找到 Git Bash,会打开一个命令控制窗口。 建立一个本地仓库 在Git Bash 打开的窗口中先进入到自己想要保存的地方,利用 cd 命令进入位置。 为了避免之后在提交的时候出现:warning: LF will be replaced by CRLF i ...
分类:Windows程序   时间:2020-02-08 09:23:41    阅读次数:70
idea安装完成后点击没反应 打不开
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]
warning: implicit declaration of function 'func1' [-Wimplicit-function-declaration] 这个警告是因为func1函数所在的 .h 文件没有生成对应的 .o 文件,即函数所在文件没有编译。解决办法就是加上include. ...
分类:其他好文   时间:2020-02-05 16:20:23    阅读次数:84
centos 升级 glibc和glibcxxx ,解决error: Failed dependencies等问题
背景: 在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
Sharing is only supported for boot loader classes because bootstrap classpath has been appended解决办法
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时忘记密码
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
vue.config.js
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
实现:win32实现EDIT控件读取和保存
``` #pragma warning(disable:4996) #include #include #include #define HDC_EDIT_1 0x100 #define HDC_BUTTON_1 0x101 #define HDC_BUTTON_2 0x102 //全局变量声明 H... ...
分类:Windows程序   时间:2020-02-02 21:32:54    阅读次数:99
3842条   上一页 1 ... 34 35 36 37 38 ... 385 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!