摘要: 微信小程序app.json中配置tabBar使用 1. 默认配置-配置信息 "tabBar": { "custom":false, "list": [{ "pagePath": "pages/index/index", "text": "首页" , "iconPath": "img/compont_ 阅读全文
posted @ 2021-08-24 15:32 永不停息的码路 阅读(2826) 评论(0) 推荐(0)
摘要: HashMap原理: 存储方式键值对,把键转为hashcode值存入链表头中,取值时候把key转为hashcode直接get到 ; jdk1.8: 超过6个元素就变成红黑树,小于等于则转为链表 LinkedHashMap原理: 双向链表根据插入Map先后顺序维护了一个双向链表的头尾head,tail 阅读全文
posted @ 2021-08-20 14:28 永不停息的码路 阅读(123) 评论(0) 推荐(0)