用法
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
评论(0)