pascalabcnet/TestSuite/CompilationSamples/DateTimeInterval.pas

16 lines
449 B
ObjectPascal
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Работа с классом System.DateTime
// Вычисление времени выполнения фрагмента кода
uses System, PABCSystem;
var dt: DateTime := DateTime.Now;
begin
// Делаем случайную паузу
var ms := Random(1000);
Writeln('Sleep','(',ms,')');
Sleep(ms);
// Сравниваем с показаниями DateTime.Now
Writeln((DateTime.Now-dt).TotalMilliseconds,'ms');
end.