当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Dart DateTime.operator_equals用法及代码示例


dart:core 库中DateTime.operator_equals 方法的用法介绍如下。

用法:

bool operator ==(
   Object other   
)
      override

如果 other 在同一时刻和同一时区(UTC 或本地)中是 DateTime,则返回 true。

final dDayUtc = DateTime.utc(1944, 6, 6);
final dDayLocal = dDayUtc.toLocal();

// These two dates are at the same moment, but are in different zones.
assert(dDayUtc != dDayLocal);
print(dDayUtc != dDayLocal); // true

请参阅isAtSameMomentAs,了解独立于其区域比较时间点的比较。

相关用法


注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 operator == method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。