![]() |
i++ in Delphi
Hallo Zusammen,
seit rund einem Monat programmier ich jetzt in Delphi und so langsam stell ich mir die Frage wo, in meinen Augen so simple Dinge, wie
Code:
sind. Als C, C++ Programmierer hab ich mich da schon dran gewöhnt.
i++;
Gibt es sowas bei Delphi nicht oder hat es eine andere Syntax, oder muss ich tatsächlich
Code:
schreiben??
i:=i+1;
Grüßle Changer |
Re: i++ in Delphi
Delphi-Quellcode:
I := I + 1;
Inc(I); I := I - 1; Dec(I); I := I + X; Inc(I, X); I := I - X; Dec(I, X); |
Alle Zeitangaben in WEZ +1. Es ist jetzt 07:21 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz