Thema
:
Delphi
Farbwert zu Dezimal
Einzelnen Beitrag anzeigen
Klaus01
Registriert seit: 30. Nov 2005
Ort: München
5.768 Beiträge
Delphi 10.4 Sydney
#
11
AW: Farbwert zu Dezimal
28. Mär 2019, 13:02
zusammenfalten
·
markieren
Delphi-Quellcode:
var
test32Bit: cardinal;
test8Bit: Byte;
begin
try
{ TODO -oUser -cConsole Main : Insert code here }
test32Bit := $ABCDEF89;
test8Bit := (test32Bit
shr
24)
and
$FF;
writeLn(intToHex(test8Bit));
test32Bit := $ABCDEF89;
test8Bit := ((test32Bit
and
$FF000000)
div
$1000000)
and
255;
writeln(intToHex(test8Bit));
readLn;
except
on
E:
Exception
do
Writeln(E.ClassName, '
:
', E.
Message
);
end
;
Erebnis:
AB
AB
zusammenfalten
·
markieren
Delphi-Quellcode:
var
test32Bit: cardinal;
test8Bit: Byte;
begin
try
{ TODO -oUser -cConsole Main : Insert code here }
test32Bit := $ABCDEF89;
test8Bit := (test32Bit
shr
24)
and
$FF;
writeLn(intToHex(test8Bit));
test32Bit := $ABCDEF89;
test8Bit := ((test32Bit
and
$FF000000)
div
$1000000)
and
256;
writeln(intToHex(test8Bit));
readLn;
except
on
E:
Exception
do
Writeln(E.ClassName, '
:
', E.
Message
);
end
;
end
.
Ergebnis:
AB
00
Grüße
Klaus
Klaus
Zitat
Klaus01
Öffentliches Profil ansehen
Mehr Beiträge von Klaus01 finden