java正则表达式,及集合底层原理,泛型,多种字符类型比较,编码,log4j,Context(上下文)的理解

正则:
https://www.runoob.com/java/java-regular-expressions.html
https://www.cnblogs.com/xyou/p/7427779.html
java反斜杠\的用法比较怪异,分为两种场景:

  1. 正则表达式
    匹配点(.) 或 {、[、(、?、$、^ 、+和 * 这些特殊符号要要前加双斜框,表示字符类的时候也是用双斜杠譬如(\ \s[空白符], \ \S, \ \d, \ \D, \ \w, \ \W),匹配 \ 时要用四斜杠
  2. 字符串
    譬如\n, \t, \r 回车换行tap之类的只要一个反斜杠即可,在字符串中表示一个反斜杠只用两个反斜杠即可 \
  3. 首先是:数组不属于集合
    https://blog.csdn.net/qq_25868207/article/details/55259978
    https://blog.csdn.net/qq_36544360/article/details/80888835
  4. 泛型:
    泛型:就是一种不确定的数据类型。
    https://www.cnblogs.com/jpfss/p/9929045.html
  5. 字符串类
    https://blog.csdn.net/xkx_1223_xkx/article/details/77946932
    6.编码
    https://blog.csdn.net/qq_41923312/article/details/80112320
    7JVM
    https://blog.csdn.net/qq_33384065/article/details/80282023#commentBox
    https://blog.csdn.net/qq_41701956/article/details/81664921#commentBox
    log4j
    https://blog.csdn.net/u013870094/article/details/79518028
    关于Context(上下文)的理解
    https://blog.csdn.net/u013196348/article/details/94395205

你可能感兴趣的:(java正则表达式,及集合底层原理,泛型,多种字符类型比较,编码,log4j,Context(上下文)的理解)