使用 forEach 遍历 ArrayList 时,若直接调用其 remove() 方法,很可能会抛出 ConcurrentModificationException 异常。
ELK
发表于
|
分类于
Study Notes
,
ELK
Oracle SQL
发表于
|
分类于
Study Notes
,
Oracle
记录遇到的一些 Oracle 函数,以及表达式
LeetCode - Algorithms
发表于
|
分类于
LeetCode
,
Algorithms
由于编写的 LeetCode - Algorithms 题解,所占的日志数过多,不利于管理与查看。于是,将题解转移到 GitBook - 老版 中。
最近(2018 - 05),发现 GitBook 推出了新版本,于是将数据迁移到 GitBook - 新版 中。
新版目前还不支持很多插件,例如 mathjax 和 katex,所以暂时保留老版的访问地址。
java.util.Properties
发表于
|
分类于
Study Notes
,
Java Source Code
The Properties class represents a persistent set of properties. The Properties can be saved to a stream or loaded from a stream. Each key and its corresponding value in the property list is a string. - - - - Java™ SE 8 API