码迷,mamicode.com
首页 >  
搜索关键字:hashmap hashset    ( 7972个结果
Java-数据容器-集合-LinkedHashMap
Java-数据容器-集合-LinkedHashMap 哈希表和链表实现的Map接口,具有可预测的迭代次序。 这种实现不同于HashMap,它维持于所有条目的运行双向链表。 此链接列表定义迭代排序,通常是将键插入到Map(插入顺序 )中的顺序 。 LinkedHashMap的特点 有序 唯一 Link ...
分类:编程语言   时间:2021-01-13 10:44:25    阅读次数:0
集合遍历出现的 ConcurentMondificationException
工作中,有时会遇到对list,map 进行循环赋值的情况,比如下面这种 会出现 concurrentMondificationException List<Map<String, Object>> resultList = analysisOfpExcel(file, pollutants, 0); ...
分类:其他好文   时间:2021-01-12 10:34:39    阅读次数:0
HashMap源码 jdk1.8
慢慢来 public class HashMap<K,V> extends AbstractMap<K,V> implements Map<K,V>, Cloneable, Serializable {} tableSizeFor(int) 根据给定的容量大小,返回指定的int类型的数,这个数是2的 ...
分类:其他好文   时间:2021-01-08 10:57:21    阅读次数:0
为什么HashMap的容量是2的幂次方
在jdk1.7中 哈希函数为 static int indexFor(int h,int length){ return h & (length-1); } 理由一:充分利用数组空间 假设长度不是2的幂次方 长度为基数 (假设长度为5) 01010101 01010101 01010101 0101 ...
分类:其他好文   时间:2021-01-07 12:43:34    阅读次数:0
Comparable与Comparator (2)
统计单词频率 import java.util.*; public class test { public static void main(String[] args) { final String speech = "It was the best of times, it was the wo ...
分类:其他好文   时间:2021-01-06 12:31:58    阅读次数:0
Java8 forEach 使用
1. forEach and Map普通方式遍历 Map Map<String, Integer> items = new HashMap<>(); items.put("A", 10); items.put("B", 20); items.put("C", 30); items.put("D", ...
分类:编程语言   时间:2021-01-05 10:40:24    阅读次数:0
ConcurrentHashMap杂谈
为什么使用ConcurrentHashMap 在并发编程中使用HashMap可能导致程序死循环,而使用线程安全的HashTable效率又非常低下 线程不安全的HashMap 在多线程环境下,使用HashMap进行put操作会引起死循环,导致CPU利用率接近100% 死循环案例: final Hash ...
分类:其他好文   时间:2021-01-02 10:53:45    阅读次数:0
抖音数据采集教程,逆向研究X-Gorgon,X-Khronos算法协议
抖音数据采集教程,逆向研究X-Gorgon,X-Khronos算法协议 抖音的接口中,通过抓包抖音请求时,可以发现x-gorgon和 xlog两大参数是必备的,虽然说目前有些接口不通过这两个参数还是可以拿到数据,但是我觉得抖音已经预留显示了这两大请求的参数,只会逐步提高要求,用于服务器验证,不然日后 ...
分类:编程语言   时间:2020-12-31 12:42:23    阅读次数:0
集合存null测试
问题 1.List、LinkedList、Vector可以存null吗? 2.HashSet、TreeSet可以存null吗? 3.HashMap、TreeMap、Hashtable可以存null吗? 测试代码 public class TestNull { public static void m ...
分类:其他好文   时间:2020-12-30 11:28:59    阅读次数:0
3. 无重复字符的最长子串
原题链接:https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/ class Solution { public int lengthOfLongestSubstring(String s) { ...
分类:其他好文   时间:2020-12-25 11:54:02    阅读次数:0
7972条   上一页 1 ... 9 10 11 12 13 ... 798 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!