본문 바로가기

Flutter-플러터/플러터 공부

Flutter : DateTime

반응형

"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

반응형