上一页 1 2 3 4 5 6 7 ··· 14 下一页

2018年5月26日

Tomcat之the jre_home environment variable is not defined correctly this environment variable is need

摘要: 参考https://blog.csdn.net/qq_30507287/article/details/53981851 今天在服务器的tomcat上部署.war文件,双击startup闪退,然后在tomcat/bin目录下,shift+右键,打开命令行窗口,然后把startup.bat拖进命令行窗 阅读全文

posted @ 2018-05-26 11:11 lijingran 阅读(6890) 评论(0) 推荐(1) 编辑

2018年5月25日

java集合框架之聚合操作stream

摘要: 参考http://how2j.cn/k/collection/collection-aggregate/702.html#nowhere 聚合操作 JDK8之后,引入了对集合的聚合操作,可以非常容易的遍历,筛选,比较集合中的元素。 像这样: 但是要用好聚合,必须先掌握Lambda表达式,聚合的章节讲 阅读全文

posted @ 2018-05-25 15:58 lijingran 阅读(3894) 评论(0) 推荐(0) 编辑

java集合框架之比较器Comparator、Comparable

摘要: 参考http://how2j.cn/k/collection/collection-comparator-comparable/693.html Comparator 假设Hero有三个属性 name,hp,damage一个集合中放存放10个Hero,通过Collections.sort对这10个进 阅读全文

posted @ 2018-05-25 14:57 lijingran 阅读(632) 评论(0) 推荐(0) 编辑

java集合框架之HashCode

摘要: 参考http://how2j.cn/k/collection/collection-hashcode/371.html List查找的低效率 假设在List中存放着无重复名称,没有顺序的2000000个Hero要把名字叫做“hero 1000000”的对象找出来List的做法是对每一个进行挨个遍历, 阅读全文

posted @ 2018-05-25 10:52 lijingran 阅读(360) 评论(0) 推荐(0) 编辑

2018年5月24日

java集合框架之几种set(HashSet LinkedHashSet TreeSet )

摘要: 参考http://how2j.cn/k/collection/collection-sets/691.html#nowhere HashSet LinkedHashSet TreeSet HashSet: 无序LinkedHashSet: 按照插入顺序TreeSet: 从小到大排序 利用Linked 阅读全文

posted @ 2018-05-24 11:50 lijingran 阅读(172) 评论(0) 推荐(0) 编辑

java集合框架之HashMap和Hashtable的区别

摘要: 参考http://how2j.cn/k/collection/collection-hashmap-vs-hashtable/692.html#nowhere HashMap和Hashtable的区别 HashMap和Hashtable都实现了Map接口,都是键值对保存数据的方式区别1: HashM 阅读全文

posted @ 2018-05-24 11:37 lijingran 阅读(138) 评论(0) 推荐(0) 编辑

java集合框架之Collections

摘要: 参考http://how2j.cn/k/collection/collection-collections/369.html Collections是一个类,容器的工具类,就如同Arrays是数组的工具类 反转 reverse 使List中的数据发生翻转 混淆 shuffle 混淆List中数据的顺 阅读全文

posted @ 2018-05-24 10:53 lijingran 阅读(324) 评论(0) 推荐(0) 编辑

java集合框架之Collection

摘要: 参考http://how2j.cn/k/collection/collection-collection/366.html Collection是 Set List Queue和 Deque的接口Queue: 先进先出队列Deque: 双向链表注:Collection和Map之间没有关系,Colle 阅读全文

posted @ 2018-05-24 10:40 lijingran 阅读(121) 评论(0) 推荐(0) 编辑

java集合框架之HashSet

摘要: 参考http://how2j.cn/k/collection/collection-hashset/364.html#nowhere 元素不能重复 Set中的元素,不能重复重复判断标准是: 首先看hashcode是否相同 如果hashcode不同,则认为是不同数据 如果hashcode相同,再比较e 阅读全文

posted @ 2018-05-24 10:37 lijingran 阅读(229) 评论(0) 推荐(0) 编辑

2018年5月23日

java集合框架之HashMap

摘要: 参考http://how2j.cn/k/collection/collection-hashmap/365.html#nowhere HashMap的键值对 HashMap储存数据的方式是—— 键值对 键不能重复,值可以重复 对于HashMap而言,key是唯一的,不可以重复的。 所以,以相同的ke 阅读全文

posted @ 2018-05-23 23:12 lijingran 阅读(330) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 14 下一页

导航