gpt4 book ai didi

java - Bundle 中值的 "Order"

转载 作者:太空宇宙 更新时间:2023-11-03 13:20:35 24 4
gpt4 key购买 nike

如果我将多个项目放在 Bundle 中,我可以相信当我为每个 bundle 的键时,我会以相同的顺序取出它们吗?

例如:

Bundle bundle = new Bundle();
bundle.putString("key1", "A");
bundle.putString("key2", "B");
bundle.putString("key3", "C");

我可以在下面的代码之后依赖它吗

String concat = "";
for (String key : bundle.keySet()) {
concat += bundle.get(key).toString();
}

concat 的值将是 "ABC"?

最佳答案

查看 Bundle 源代码怎么样?它是用 HashMap 构建的,不保证原始键的顺序。所以答案将是

关于java - Bundle 中值的 "Order",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28683029/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com