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... ...
基本概念 __数据库(database)__ 保存有组织的数据的容器(通常是一个文件或一组文件)。类似于文件柜。 __表(table)__ 某种特定类型数据的结构化清单。类似于文件。 __模式(schema)__ 关于数据库和表的布局及特性的信息。 __列(column)__ 表中的一个字段。所有表 ...
分类:
数据库 时间:
2020-02-02 01:47:49
阅读次数:
94
配置ssh 允许本机远程连接: 系统偏好设置->共享->点击选中 远程登录 【否则报错:ssh: connect to host localhost port 22: Connection refused】 允许免密ssh ssh-keygen -t rsa【一直回车到底】 cat ~/.ssh/i ...
分类:
系统相关 时间:
2020-02-01 19:46:42
阅读次数:
209