摘要:
MySQL数据库,建一张表(table)时通常需要考虑如下因素: 存储引擎 自 MySQL 5.5.5 版本开始,默认的存储引擎是 InnoDB,除非你的库(database)显式声明了其他的存储引擎,SHOW ENGINES;查看当前库(database)的默认存储引擎。 字符集 SHOW VAR 阅读全文
摘要:
最近遇到当JavaBean不遵循驼峰命名规则时,使用反射赋值失败。但是我的类中属性个数非常多(一个一个改也太恼火了),因此写了个将蛇形变量名转驼峰变量名的方法,在此分享出来供大家使用。 public static void convertToCamelCase(Class<?> clazz) { F 阅读全文
摘要:
First, let’s take a look at the ownership rules. Keep these rules in mind as we through the examples that illustrate them: Each value in Rust has an o 阅读全文
摘要:
Many programming languages don’t require you to think about the stack and the heap very often. 许多编程语言并不会要求你经常思考堆栈。But in a system programming language 阅读全文
摘要:
对于Git的使用,笔者也仅仅是使用过……,今天就简单聊聊何为Git以及如何正确的使用Git来管理我们的项目代码。 https://git-scm.com/about Git is a free and open source distributed version control system Gi 阅读全文