摘要:
一. 安装mysql后root shell可以登录但是普通用户不能使用mysql -u root -p登录mysql 解决: 阅读全文
摘要:
解法1. : 解法2: 快慢指针,环 {3,1,2,0,2,5,3} index {0,1,2,3,4,5,6} 这是一个环:3->0->3->0 {1,4,6,6,6,2,3} 1->4->6->3>6 是个环:慢指针一步一步,快指针两步两步,等他们一样的时候,快指针回到起点,一步一步,等他们一样 阅读全文
摘要:
1. gradle clean build 2. gradle wrapper 执行完成这个命令后,会出现一个gradle文件夹,里面有gradle-wrapper.jar和gradle-wrapper.properties 执行完成这两个命令后就可以把 gradle gradle-wrapper. 阅读全文
摘要:
1.FileChannel 和 Buffer 2. Scattering 和 Gathering,以下是Scatter,Gather和Scatter差不多 2.Channel Transfer 4.Selector 阅读全文
摘要:
1. 最简单通过主动的内部函数的方法捕获 2. 通过设置一个默认的UncaughtExceptionHandler来处理所有的异常 3. 阅读全文
摘要:
/** * Executes the given task sometime in the future. The task * may execute in a new thread or in an existing pooled thread. * * If the task cannot be submitted for executio... 阅读全文