ebpf中如何固化map數據?
1.聲明一個map: Map map = new HashMap()
; 2.向map中放值,注意:map是key-value的形式存放的.如: map.put(”sa”,”dd”)
; 3.從map中取值:String str = map.get(”sa”).toString();結果是:str = ”dd”
; 4.遍歷一個map,從中取得key 和value Map map = new HashMap() ; Iterator it = map.entrySet().iterator() ; while (it.hasNext()) { Map.Entry entry = (Map.Entry) it.next() ; Object key = entry.getKey() ; Object value = entry.getValue() ; }
下一篇style什么牌子