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


Dart DateTime.compareTo用法及代码示例


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

用法:

int compareTo(
   DateTime other   
)
      override

将此 DateTime 对象与 other 进行比较,如果值相等则返回零。

compareTo 函数返回:

  • 如果此 DateTime isBefore other 为负值。
  • 0 如果这个 DateTime isAtSameMomentAs other ,并且
  • 否则为正值(当此 DateTime isAfter other 时)。
final now = DateTime.now();
final future = now.add(const Duration(days: 2));
final past = now.subtract(const Duration(days: 2));
final newDate = now.toUtc();

print(now.compareTo(future)); // -1
print(now.compareTo(past)); // 1
print(now.compareTo(newDate)); // 0

相关用法


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