Dart DateTimeクラスの定数についてメモ書き。
定数一覧
DateTimeクラスの定数一覧。
月と曜日が定数として定義されている。公式サイトはこちら。
月/曜日 | 定数 | 型 | 値 |
---|---|---|---|
月 | january | const int | 1 |
月 | february | const int | 2 |
月 | march | const int | 3 |
月 | april | const int | 4 |
月 | may | const int | 5 |
月 | june | const int | 6 |
月 | july | const int | 7 |
月 | august | const int | 8 |
月 | september | const int | 9 |
月 | october | const int | 10 |
月 | november | const int | 11 |
月 | december | const int | 12 |
曜日 | monday | const int | 1 |
曜日 | tuesday | const int | 2 |
曜日 | wednesday | const int | 3 |
曜日 | thursday | const int | 4 |
曜日 | friday | const int | 5 |
曜日 | saturday | const int | 6 |
曜日 | sunday | const int | 7 |
定数値を確認。以下を実行する。
print("january:${DateTime.january}");
print("february:${DateTime.february}");
print("march:${DateTime.march}");
print("april:${DateTime.april}");
print("may:${DateTime.may}");
print("june:${DateTime.june}");
print("july:${DateTime.july}");
print("august:${DateTime.august}");
print("september:${DateTime.september}");
print("october:${DateTime.october}");
print("november:${DateTime.november}");
print("december:${DateTime.december}");
print("monday:${DateTime.monday}");
print("tuesday:${DateTime.tuesday}");
print("wednesday:${DateTime.wednesday}");
print("thursday:${DateTime.thursday}");
print("friday:${DateTime.friday}");
print("saturday:${DateTime.saturday}");
print("sunday:${DateTime.sunday}");
実行結果。
january:1
february:2
march:3
april:4
may:5
june:6
july:7
august:8
september:9
october:10
november:11
december:12
monday:1
tuesday:2
wednesday:3
thursday:4
friday:5
saturday:6
sunday:7
コメント