1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-20 22:17:09 +08:00

Merge branch 'main' of github.com:Snailclimb/JavaGuide

This commit is contained in:
guide 2022-06-14 17:42:47 +08:00
commit 1f5021c271
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ tag:
-- 创建Windows服务
sc create mysql binPath= mysqld_bin_path(注意:等号与值之间有空格)
/* 连接与断开服务器 */
mysql -h 地址 -P 端口 -u 用户名 -p 密码
mysql -u 地址 -P 端口 -u 用户名 -p 密码
SHOW PROCESSLIST -- 显示哪些线程正在运行
SHOW VARIABLES -- 显示系统变量信息
```

View File

@ -233,7 +233,7 @@ Codelf 提供了在线网站版本,网址:[https://unbug.github.io/codelf/](
1. 《阿里巴巴 Java 开发手册》
2. 《Clean Code》
3. Google Java 代码指南https://google.github.io/styleguide/javaguide.html#s5.1-identifier-name
3. Google Java 代码指南https://google.github.io/styleguide/javaguide.html
4. 告别编码5分钟命名2小时史上最全的Java命名规范参考https://www.cnblogs.com/liqiangchn/p/12000361.html
## 总结