- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我实际上正在使用 Dart 中的 map
,但我无法弄清楚为什么我的示例中的 map
变量表现异常或者我做错了什么我的代码。
请有人帮我调试代码,我已经发布了重现问题的代码。
example.dart
void main() {
var data2 = {};
var data1 = {};
var floorDetails = new Map();
floorDetails.clear();
for (int i = 0; i < 2; i++) {
data2.clear();
data1.clear();
for (int j = 0; j < 2; j++) {
data1 = {
'flat${(i + 1) * 100 + (j + 1)}': {'flattype': "flat"},
};
data2.addAll(data1);
}
print('data2=$data2');
floorDetails['floor${(i+1)}'] = data2;
print('floorDetails = $floorDetails');
}
print(floorDetails.keys);
}
代码的输出是:
floorDetails = {
floor1: {
flat201: {flattype: flat},
flat202: {flattype: flat}
},
floor2: {
flat201: {flattype: flat},
flat202: {flattype: flat}
}
}
实际上我期待的输出是:
floorDetails = {
floor1: {
flat101: {flattype: flat},
flat102: {flattype: flat}
},
floor2: {
flat201: {flattype: flat},
flat202: {flattype: flat}
}
}
这实际上是根据 Map.addAll()
方法的文档覆盖 map
floorDetails
中所有键的值
void addAll(
Map<K, V> other
)Adds all key-value pairs of other to this map.
If a key of other is already in this map, its value is overwritten.
The operation is equivalent to doing
this[key] = value
for each key and associated value in other. It iterates over other, which must therefore not change during the iteration.
虽然在给定的示例中键不同,但它仍然会覆盖值。
拜托,任何帮助将不胜感激。非常感谢,鲯鳅鱼
最佳答案
在第一次迭代中,您在这里分配 data2
floorDetails['floor${(i+1)}'] = data2;
但是下一次迭代的第一行是
data2.clear();
清除 data2
。这也会清除 floorDetails['floor1']` 的内容,因为它引用了同一张 map 。
要么创建一个新 map ,而不是通过更改清除它
data2.clear();
data1.clear();
到
data2 = {}; // or new Map()
data1 = {};
或者在分配之前创建 map 的副本
floorDetails['floor${(i+1)}'] = new Map.from(data2);
Map 是一个对象并通过引用复制。只有 bool
、double
、int
和 String
等原始类型按值复制。
关于dart - Dart 中的 Map 正在用最后更新的值替换先前键的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47260179/
我的应用将 SceneKit 内容的“页面”与图像和文本交替。当我从图像页面前进到新的 SceneKit 页面时,前一个 SceneKit 页面中的内容会短暂显示,然后被新内容替换。时髦。 我只使用一
我正在尝试处理(在 C# 中)包含一些数字数据的大型数据文件。给定一个整数数组,如何对其进行拆分/分组,以便如果下一个 n(两个或更多)是负数,则前一个 n 元素被分组。例如,在下面的数组中,应该使用
刚接触promises,研究过。所以我的代码和我的理解: sql.connect(config).then(function(connection) { return connection.req
目前我在 if (roobaf) block 中有一些代码,这取决于 foo 和 bar 是否为假。我可以在 block 内再次检查这些条件,但感觉像是不必要的代码重复。 if (foo) {
我是一名优秀的程序员,十分优秀!