将值添加到 HashMap
我需要帮助将字符串数组中的值添加到 HashMap 中。
if (!loaded){
synchronized(syncLock){
if (!loaded){
loaded=true;
if (prefix!=null){
prefixMap = new HashMap<Integer, Float>();
String userDefaultPrefix[] = prefix.split("~");
}
}
}
}
我将字符串存储在 userDefaultPrefix 中,我需要将这些值添加到 prefixMap 中。 TIA
I need help to add the values from a String array into a HashMap.
if (!loaded){
synchronized(syncLock){
if (!loaded){
loaded=true;
if (prefix!=null){
prefixMap = new HashMap<Integer, Float>();
String userDefaultPrefix[] = prefix.split("~");
}
}
}
}
I have the strings stored in userDefaultPrefix, and i need to add those values into prefixMap. TIA
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我的理解正确并且您确定数据质量,则可以按以下方式填写 prefixMap:
If I get you right and you're sure in data quality than you can fill prefixMap following way:
假设您想要 (i->userDefaultPrefix[i]) 的映射:
assuming you want a map of (i->userDefaultPrefix[i]):