“Porównaj daty” Kod odpowiedzi

Różnica datetime

 //the birthday's date
 final birthday = DateTime(1967, 10, 12);
 final date2 = DateTime.now();
 final difference = date2.difference(birthday).inDays;
VasteMonde

Porównaj daty

DateTime dt1 = DateTime.parse("2021-12-23 11:47:00");
DateTime dt2 = DateTime.parse("2018-02-27 10:09:00");

if(dt1.compareTo(dt2) == 0){
    print("Both date time are at same moment.");
}

if(dt1.compareTo(dt2) < 0){
    print("DT1 is before DT2");
}

if(dt1.compareTo(dt2) > 0){
    print("DT1 is after DT2");
}
david garcia

Odpowiedzi podobne do “Porównaj daty”

Pytania podobne do “Porównaj daty”

Więcej pokrewnych odpowiedzi na “Porównaj daty” w Dart

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu