原因: https://blog.csdn.net/fansili/article/details/78664267 解决办法: 1:查看mysql配置文件位置 2:打开配置文件 3:修改配置:如果没有该配置项,添加一个即可 4:重启mysql ...
分类:
数据库 时间:
2019-03-30 14:53:28
阅读次数:
459
POJ1012 - Joseph Joseph Description The Joseph's problem is notoriously known. For those who are not familiar with the original problem: from among n ...
分类:
其他好文 时间:
2019-03-30 01:13:39
阅读次数:
171
HashMap 技术点1 离散化hash 使用了简单的算法,用于让hash值更离散。 本质上是用hash值的前16位让hash值的后16位变得更加离散。 HashMap的本质是桶,所以对hash值进行处理会有助于在分桶的时候变得更加均匀。 技术点2 初始容量 初始容量通过配置的初始大小和负载因子决定 ...
分类:
编程语言 时间:
2019-03-29 11:40:34
阅读次数:
155
The set [1,2,3,...,n] contains a total of n! unique permutations. By listing and labeling all of the permutations in order, we get the following seque ...
分类:
其他好文 时间:
2019-03-29 10:23:37
阅读次数:
185
http://poj.org/problem?id=3461 Description The French author Georges Perec (1936–1982) once wrote a book, La disparition, without the letter 'e'. He w ...
分类:
其他好文 时间:
2019-03-27 12:42:43
阅读次数:
107
一、web.xml文件介绍 The web.xml file contains several elements that are required for a Facelets application. All of the following are created automatically ...
分类:
Web程序 时间:
2019-03-27 12:29:24
阅读次数:
169
Ants An army of ants walk on a horizontal pole of length l cm, each with a constant speed of 1 cm/s. When a walking ant reaches an end of the pole, it ...
分类:
其他好文 时间:
2019-03-25 00:53:56
阅读次数:
152
即contains操作 /// - Parameter member: An element to look for in the set. /// - Returns: `true` if `member` exists in the set; otherwise, `false`. /// //... ...
分类:
编程语言 时间:
2019-03-24 13:50:50
阅读次数:
173
一.总体分类 Collection(包括方法add,remove,contains,clear,size) LinkedList ArrayList Vector Stack 2. Set HashSet TreeSet Map 二.集合 Set(无序,不可重复) 无法获取索引位置,所以遍历时不能用 ...
分类:
其他好文 时间:
2019-03-24 13:36:14
阅读次数:
121
-请求重定向,路径重写 -更改ResponseBody中JSON数据 Go->go to OnBeforeResponse定位到OnBeforeResponse函数,在末尾添加: 这里没有对原JSON数据修改,而直接定义了新的JSON数据替换。 PS: https://blog.csdn.net/q ...
分类:
其他好文 时间:
2019-03-22 12:59:03
阅读次数:
1035