摘要:
1 .id select的查询顺序,如果ID相同则按从上到下。 2.select type 区分查询是简单还是复杂查询 1)simple:简单音询。查询不包含子音询和union explain select *from film where id = 2: 2)primary:复杂查询中最外层的 s 阅读全文
摘要:
为什么java的hashcode的选用31次方? 以下是java源码部分 public int hashCode() { int h = hash; if (h == 0 && value.length > 0) { char val[] = value; for (int i = 0; i < v 阅读全文