欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java数据集合类型比较

程序员文章站 2022-04-15 19:04:49
以下实现函数调用栈打印:public HashMap functions=new HashMap<>();RuntimeException runtime=new RuntimeException();runtime.fillInStackTrace();int length = runtime.getStackTrace().length;//多线程环境下,使用Hashmap进行put操作会引起死循环,导致CPU利用率接...

以下实现函数调用栈打印:
public HashMap<StackTraceElement,String> functions=new HashMap<>();
RuntimeException runtime=new RuntimeException();
runtime.fillInStackTrace();
int length = runtime.getStackTrace().length;
//多线程环境下,使用Hashmap进行put操作会引起死循环,导致CPU利用率接近100%,所以在并发情况下不能使用HashMap。
for (int i=0;i<length;i++){
functions.put(runtime.getStackTrace()[i],runtime.getStackTrace()[i].getClassName());
}
//它的key、value都可以为null
functions.put(null,null);
public void traveras(HashMap map){
Iterator iter = map.entrySet().iterator();
while(iter.hasNext()) {
Map.Entry entry = (Map.Entry)iter.next();
// 获取key
StackTraceElement key = (StackTraceElement)entry.getKey();
// 获取value
String value = (String)entry.getValue();
}
}
traveras(functions);

本文地址:https://blog.csdn.net/qq_42894864/article/details/107884072

上一篇: 泛型数组

下一篇: 嵌套接口