文章目录 最近项目中发现个问题,就是javascript的String.fromCharCode对超过两个字节的unicode不能很好的返回对应的字。测试如下:123String.fromCharCode('0x54c8') //正常返回"哈"String.fromCharCode('0x20087... ...
分类:
编程语言 时间:
2019-10-02 20:37:50
阅读次数:
121
Spring Boot 1.X RedisCacheManager 配置方式 Spring Boot 2.X RedisCacheManager 配置方式 ...
分类:
编程语言 时间:
2019-10-02 15:04:45
阅读次数:
155
" All system-wide defaults are set in $VIMRUNTIME/debian.vim and sourced by" the call to :runtime you can find below. If you wish to change any of tho ...
分类:
系统相关 时间:
2019-10-02 14:51:03
阅读次数:
96
@Autowired注解的实现过程,其实就是Spring Bean的自动装配过程。通过看@Autowired源码注释部分我们可以看到@Autowired的实现是通过AutowiredAnnotationBeanPostProcessor后置处理器中实现的。 AutowiredAnnotationBe ...
分类:
编程语言 时间:
2019-10-02 10:42:22
阅读次数:
105
An arithmetic progression is such a non-empty sequence of numbers where the difference between any two successive numbers is constant. This constant n ...
分类:
其他好文 时间:
2019-10-02 10:33:46
阅读次数:
96
DOWNLOAD_FILE Download files on a system. Once packaged properly will work on all operating systems. Simple but powerfull. Can be used in many situati ...
分类:
编程语言 时间:
2019-10-01 22:10:41
阅读次数:
105
每当遇到Java面试,“锁”是个必然会被提到的东西。那么,在面试中,谈“锁”都会谈论些什么呢,诸位看官又是否对“锁”有足够的了解?本文旨在剖析锁的底层原理,以及锁的应用场景。一、Synchronized1、一道面试题同一个对象在A、B两个线程中分别访问该对象的两个同步方法writer和reader,... ...
分类:
编程语言 时间:
2019-10-01 11:29:30
阅读次数:
108
20182328 2019 2020 1 《数据结构与面向对象程序设计》第4周学习总结 教材学习内容总结 1、对类和对象进一步的了解。 2、学习静态类和静态方法。 3、学习类之间不同类型的关系。 4、学习方法的设计及重载。 5、学习了如何调试。 教材学习中的问题和解决过程 问题1:为什么有的变量可以 ...
分类:
其他好文 时间:
2019-09-30 23:25:42
阅读次数:
106
1.nullptr 参考链接: https://blog.csdn.net/jiange_zh/article/details/79356417 ...
分类:
编程语言 时间:
2019-09-30 16:25:26
阅读次数:
100
数据类型 整型,浮点型,字符,字符串,布尔型,Unit无值,Null空值,Nothing:其他所有类型的子类型Any:所有其他类的超类AnyRef:所有引用类的基类 数据结构 字符串String,StringBuffer:可变,每次操作都是对其本身进行操作append方法把字符添加到缓冲区的末端in ...
分类:
其他好文 时间:
2019-09-30 14:45:58
阅读次数:
77