dart:collection
库中SplayTreeSet.add
方法的用法介绍如下。
用法:
bool add(
E element
)
override
将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 SplayTreeSet.addAll用法及代码示例
- Dart SplayTreeSet.lookup用法及代码示例
- Dart SplayTreeSet.isEmpty用法及代码示例
- Dart SplayTreeSet.remove用法及代码示例
- Dart SplayTreeSet.isNotEmpty用法及代码示例
- Dart SplayTreeSet.retainAll用法及代码示例
- Dart SplayTreeSet.toSet用法及代码示例
- Dart SplayTreeSet.clear用法及代码示例
- Dart SplayTreeSet.removeAll用法及代码示例
- Dart SplayTreeSet.of用法及代码示例
- Dart SplayTreeSet.from用法及代码示例
- Dart SplayTreeSet.contains用法及代码示例
- Dart SplayTreeSet.intersection用法及代码示例
- Dart SplayTreeSet.difference用法及代码示例
- Dart SplayTreeSet.union用法及代码示例
- Dart SplayTreeSet用法及代码示例
- Dart SplayTreeMap.from用法及代码示例
- Dart SplayTreeMap.containsValue用法及代码示例
- Dart SplayTreeMap.addAll用法及代码示例
- Dart SplayTreeMap.fromIterables用法及代码示例
- Dart SplayTreeMap.fromIterable用法及代码示例
- Dart SplayTreeMap.clear用法及代码示例
- Dart SplayTreeMap.forEach用法及代码示例
- Dart SplayTreeMap.putIfAbsent用法及代码示例
- Dart SplayTreeMap用法及代码示例
注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 add method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。