摘要: https://www.cnblogs.com/myseries/p/10918819.html 阅读全文
posted @ 2021-01-28 17:49 别叫我大叔 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 基础问题 1. 几类数据结构的定义和区别是什么? 2. 容器的数据结构底层是怎么实现的?怎么进行扩容? 3. 容器的线程安全怎么实现? 一、List容器 数据有序,允许重复数据,线程不安全。 1. linkedList 底层用双向链表实现,操作速度快,可以在头、尾、[n]操作数据。 2. Array 阅读全文
posted @ 2018-11-23 17:55 别叫我大叔 阅读(1232) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/thingk/p/6813045.html 阅读全文
posted @ 2018-11-21 10:58 别叫我大叔 阅读(355) 评论(0) 推荐(0) 编辑
摘要: 一、明确@Controller和@RestController区别 @RestController注解相当于 @Controller+@ResponseBody合在一起的作用。 @Controller 注解,在对应的方法上,视图解析器可以解析return 的jsp,html页面,并且跳转到相应页面。 阅读全文
posted @ 2018-07-18 11:10 别叫我大叔 阅读(401) 评论(0) 推荐(0) 编辑