dart:core
库中Set.add
方法的用法介绍如下。
用法:
bool add(
E value
)
将value
添加到集合中。
如果集合中还没有value
(或相等的值),则返回true
。否则返回 false
并且集合不会改变。
例子:
final dateTimes = <DateTime>{};
final time1 = DateTime.fromMillisecondsSinceEpoch(0);
final time2 = DateTime.fromMillisecondsSinceEpoch(0);
// time1 and time2 are equal, but not identical.
assert(time1 == time2);
assert(!identical(time1, time2));
final time1Added = dateTimes.add(time1);
print(time1Added); // true
// A value equal to time2 exists already in the set, and the call to
// add doesn't change the set.
final time2Added = dateTimes.add(time2);
print(time2Added); // false
print(dateTimes); // {1970-01-01 02:00:00.000}
assert(dateTimes.length == 1);
assert(identical(time1, dateTimes.first));
print(dateTimes.length);
相关用法
- Dart Set.addAll用法及代码示例
- Dart Set.removeWhere用法及代码示例
- Dart Set.from用法及代码示例
- Dart Set.remove用法及代码示例
- Dart Set.retainAll用法及代码示例
- Dart Set.contains用法及代码示例
- Dart Set.retainWhere用法及代码示例
- Dart Set.union用法及代码示例
- Dart Set.unmodifiable用法及代码示例
- Dart Set.difference用法及代码示例
- Dart Set.clear用法及代码示例
- Dart Set.containsAll用法及代码示例
- Dart Set.removeAll用法及代码示例
- Dart Set.lookup用法及代码示例
- Dart Set.of用法及代码示例
- Dart Set.intersection用法及代码示例
- Dart SetMixin.forEach用法及代码示例
- Dart SetMixin.addAll用法及代码示例
- Dart SetMixin.reduce用法及代码示例
- Dart SetMixin.removeAll用法及代码示例
- Dart SetMixin.add用法及代码示例
- Dart SetMixin.expand用法及代码示例
- Dart SetMixin.elementAt用法及代码示例
- Dart SetMixin.contains用法及代码示例
- Dart SetMixin.containsAll用法及代码示例
注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 add method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。