Einzelnen Beitrag anzeigen

gammatester

Registriert seit: 6. Dez 2005
999 Beiträge
 
#3

AW: Class Operator und UInt64 ab welchem Delphi?

  Alt 10. Jul 2013, 13:40
Delphi 7 hatte UInt64 jedenfalls noch nicht. Delphi 2006 meine ich schon, bin mir aber nicht sicher.
Delphi 7 hat uint64, aber es ist manchmal buggy, so ist zB bei
Delphi-Quellcode:
program xx;
{$apptype console}

var
  x: uint64;
begin
  x := uint64(-1);
  writeln(x);
end.
die D7-Ausgabe -1, D9 = D2005 gibt richtig 18446744073709551615 aus.
  Mit Zitat antworten Zitat