我正在尝试找到一个将TDateTime值40653.6830593转换为一年,一个月,一天,一小时,一分钟和一秒的计算。
当然,我确信这是可能的,但是我的大脑似乎没有能力编写一个能够从那个双倍中提取这些值的公式。
我使用的是一种类似vb的Satellite Forms,但不要指望我需要任何特定的.NET库才能做到这一点,对吧?它应该只是一个数值计算......对吧?
感谢您的帮助!最诚挚的。
乔
答案 0 :(得分:2)
基于您的'Delphi'标签...
在Delphi中
implementation
uses DateUtils;
....
var
MyDate: TDateTime;
...other vars...
begin
MyDate:= double(40653.6830593);
MyYear:= YearOf(MyDate);
MyMonth:= MonthOf(MyDate);
MyDay:= DayOf(MyDate);
MyHour:= HourOf(MyDate);
MyMinute:= ... ah well you get the idea.
BTW:VB或Delphi,是吗?
如果你想推出自己的
来自sysutils单位(根据双重许可证发布GPL2 / Borland No废话)
您可以在http://www.koders.com/delphi/fidF6715D3FD1D4A92BA7F29F96643D8E9D11C1089F.aspx?s=hook
function DecodeDateFully(const DateTime: TDateTime; var Year, Month, Day, DOW: Word): Boolean;
const
D1 = 365;
D4 = D1 * 4 + 1;
D100 = D4 * 25 - 1;
D400 = D100 * 4 + 1;
var
Y, M, D, I: Word;
T: Integer;
DayTable: PDayTable;
begin
T := DateTimeToTimeStamp(DateTime).Date;
if T <= 0 then
begin
Year := 0;
Month := 0;
Day := 0;
DOW := 0;
Result := False;
end else
begin
DOW := T mod 7 + 1;
Dec(T);
Y := 1;
while T >= D400 do
begin
Dec(T, D400);
Inc(Y, 400);
end;
DivMod(T, D100, I, D);
if I = 4 then
begin
Dec(I);
Inc(D, D100);
end;
Inc(Y, I * 100);
DivMod(D, D4, I, D);
Inc(Y, I * 4);
DivMod(D, D1, I, D);
if I = 4 then
begin
Dec(I);
Inc(D, D1);
end;
Inc(Y, I);
Result := IsLeapYear(Y);
DayTable := @MonthDays[Result];
M := 1;
while True do
begin
I := DayTable^[M];
if D < I then Break;
Dec(D, I);
Inc(M);
end;
Year := Y;
Month := M;
Day := D + 1;
end;
end;
function IsLeapYear(Year: Word): Boolean;
begin
Result := (Year mod 4 = 0) and ((Year mod 100 <> 0) or (Year mod 400 = 0));
end;
function TryEncodeDate(Year, Month, Day: Word; out Date: TDateTime): Boolean;
var
I: Integer;
DayTable: PDayTable;
begin
Result := False;
DayTable := @MonthDays[IsLeapYear(Year)];
if (Year >= 1) and (Year <= 9999) and (Month >= 1) and (Month <= 12) and
(Day >= 1) and (Day <= DayTable^[Month]) then
begin
for I := 1 to Month - 1 do Inc(Day, DayTable^[I]);
I := Year - 1;
Date := I * 365 + I div 4 - I div 100 + I div 400 + Day - DateDelta;
Result := True;
end;
end;
答案 1 :(得分:1)
Legacy VB或VBA(甚至是Excel)会将Date视为自18/30/1899以来的天数,我相信Delphi也是如此。因此,在传统的VB / VBA中,您可以编写
Dim myDate as Date
myDate = myDate + 40653.68303593
要获得2011年4月20日下午4:23:36。在VB.NET中,它是不同的,因为DateTime结构默认为1月1日,0001。
Dim myDate As New DateTime(1899, 12, 30)
myDate = myDate.AddDays(40653.68303593)
另一位用户已经发布了Delphi答案。
无论如何,基本前提是你要加上天数,小数部分代表时间。所以在这个例子中,自18/33/18/99以来已经过了40653整天,并且有0.683 ...部分日。
答案 2 :(得分:0)
提取小时:
记住1.0 = 1天= 24小时,因此
DayPart:= double(MyDateTime) - Floor(double(MyDateTime));
//there is a function for fraction, but I forgot the name,
//never use that stuff.
//if we want to round 0.9999999999 up from 23:59:59 to 24:00:00, do this:
if (RoundTimeUpByHalfASecond = true) then DayPart:= DayPart + (1/(24*60*60*2));
hours:= floor(DayPart*24);
minutes:= floor(DayPart*24*60) mod 60;
seconds:= minutes:= floor(DayPart*24*60*60) mod 60;
希望有所帮助