Domanda

I'm a newbie programmer. I need to use Delphi's Inc() and Dec() procedures in C++ Builder XE like this:

Inc(Filler);

Dec(GridClientWidth);

Anyone can help me how to do this?

È stato utile?

Soluzione

You are looking for the ++ and -- operators:

Filler++;
GridClientWidth--;

In C++ these operators are baked into the language. In Delphi, Inc and Dec are implemented as intrinsic routines.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top