"DateTime" is a class in the Dart programming language that represents a specific point in time. It provides methods for working with dates, times, and time zones. A DateTime object contains a date and time value, with a precision of up to microseconds, and can be used for tasks such as calculating the difference between two dates, or formatting a date and time into a string.
Here's an example of how you can use DateTime in Dart:
"DatTime"은 특정한 시점의 시간을 나타내주는 Dart 언어의 클래스이다. 그것은 날짜, 시간들, 특정 시간들의 함수들을 제공해준다.
DateTime 객체는 날짜 그리고 시간의 값과 아주 미세한 정도를 포함하고 있다. 그리고 두 날짜의 차이또한 계산을 해준다. 또는
날짜와 시간을 String으로 변환해준다.
represent : 나타내다
precision : 정도
var now = DateTime.now();
print('Today is: $now');
var birthday = DateTime(1998, 12, 27);
print('My birthday is on $birthday');
var difference = now.difference(birthday);
print('The difference between now and my birthday is: $difference');
In this example, DateTime.now() is used to get the current date and time, DateTime(1998, 12, 27) creates a new DateTime object representing a specific date, and difference method is used to calculate the difference between two DateTime objects.
DateTime.now => 현재 시간을 나타내준다.
DateTime(1998,12,27); => 특정 날짜를 지정해준다.
now.difference(birthday); => 지금날짜와 특정시간의 날짜의 차이를 계산해주는 함수식이다.
from by GPT
'Flutter-플러터 > 플러터 공부' 카테고리의 다른 글
Flutter : list<모델> aa =[]; 의 위치와 위젯의 생애주기 (0) | 2023.02.15 |
---|---|
Flutter : Expanded와 SingleChildScrollView 의 차이점 (0) | 2023.02.14 |
Flutter : BottomNavBar로 TodoPage 기본 모델 만들기 (0) | 2023.02.07 |
Flutter 텍스트 필드에 숫자만 입력하게 하는 방법 (0) | 2023.02.03 |
Flutter 가로로 꽉찬 버튼 만드는 방법 (0) | 2023.02.02 |