[Reference] System.SysUtils.Now
Delphi
function Now: TDateTime;
C++
extern PACKAGE System::TDateTime __fastcall Now(void);
Properties
Type |
Visibility |
Source |
Unit |
Parent |
function |
public |
System.SysUtils.pas System.SysUtils.hpp |
Description
Returns the current date and time.
Returns the current date and time, corresponding to the sum of the value returned by the global Date and Time functions.
Note: Although TDateTime values can represent milliseconds, Now is accurate only to the nearest second.
현재 날짜와 시간을 반환합니다.
전역 Date 및 Time 함수에 의해 반환된 값의 합계에 해당하는 현재 날짜 및 시간을 반환합니다.
참고: TDateTime 값은 밀리 초를 나타낼 수 있지만, Now는 가장 가까운 초에만 정확합니다.
Example
begin // 2017-03-09 ※ 2017년 3월 9일 기준. Writeln(DateToStr(Now())); Readln; end. |
corresponding 미국식 [|kɔ:rə|spɑ:ndɪŋ;|kɑ:-] (~에) 해당하는 correspond 미국식 [|kɔ:rə|spɑ:nd;|kɑ:-] 1. 일치하다, 부합하다 although 미국식 [ɔ:l|ðoʊ] 1. (비록)
…이긴 하지만 accurate 미국·영국 [|ӕkjərət] 1. 정확한 accuracy (accurate) 미국·영국 [|ӕkjərəsi] 정확, 정확도 가장 가까운 near (nearest) 미국식 [nɪr] 1. (거리상으로) 가까운 |
출처: http://docwiki.embarcadero.com/Libraries/XE2/en/System.SysUtils.Now