Increment and decrement operators
Increment and decrement operators are unary operators that increase or decrease their operand by one. They are commonly found in imperative programming languages. C-like languages feature two versions (pre- and post-) of each operator with slightly different semantics. In languages syntactically derived from B (including C and its various derivatives), the increment operator is written as The increment operator increases, and the decrement operator decreases, the value of its operand by 1. The operand must have an arithmetic or pointer data type, and must refer to a modifiable data object. Pointers values are increased (or decreased) by an amount that makes them point to the next (or previous) element adjacent in memory. In languages that support both versions of the operators:
In languages where increment/decrement is not an expression (e.g., Go), only one version is needed (in the case of Go, post operators only). Since the increment/decrement operator modifies its operand, use of such an operand more than once within the same expression can produce undefined results. For example, in expressions such as In languages with typed pointers like C, the increment operator steps the pointer to the next item of that type -- increasing the value of the pointer by the size of that type. When a pointer (of the right type) points to any item in an array, incrementing (or decrementing) makes the pointer point to the "next" (or "previous") item of that array. Thus, incrementing a pointer to an integer makes it point to the next integer (typically increasing the pointer value by 4);[1] incrementing a pointer to a structure of size 106 bytes makes it point to the next structure by increasing the pointer value by 106.[2] ExamplesThe following C code fragment illustrates the difference between the pre and post increment and decrement operators: int x;
int y;
// Increment operators
// Pre-increment: x is incremented by 1, then y is assigned the value of x
x = 1;
y = ++x; // x is now 2, y is also 2
// Post-increment: y is assigned the value of x, then x is incremented by 1
x = 1;
y = x++; // y is 1, x is now 2
// Decrement operators
// Pre-decrement: x is decremented by 1, then y is assigned the value of x
x = 1;
y = --x; // x is now 0, y is also 0
// Post-decrement: y is assigned the value of x, then x is decremented by 1
x = 1;
y = x--; // y is 1, x is now 0
In languages lacking these operators, equivalent results require an extra line of code: # Pre-increment: y = ++x
x = 1
x = x + 1 # x is now 2 (can be written as "x += 1" in Python)
y = x # y is also 2
# Post-increment: y = x++
x = 1
y = x # y is 1
x = x + 1 # x is now 2
// Sum the elements of an array
float sum_elements(float arr[], int n)
{
float sum = 0.0;
int i = 0;
while (i < n)
sum += arr[i++]; // Post-increment of i, which steps
// through n elements of the array
return sum;
}
The post-increment operator is also commonly used with pointers: // Copy one array to another
void copy_array(float *src, float *dst, int n)
{
while (n-- > 0) // Loop that counts down from n to zero
*dst++ = *src++; // Copies element *(src) to *(dst),
// then increments both pointers
}
These examples also work in other C-like languages, such as C++, Java, and C#.
Supporting languagesThe following list, though not complete or all-inclusive, lists some of the major programming languages that support the increment and decrement operators.
Apple's Swift once supported these operators, but they have been depreciated since version 2.2[13] and removed as of version 3.0.[14][15] Pascal, Delphi, Modula-2, and Oberon uses functions ( Notably Python and Rust do not support these operators. HistoryThe concept was introduced in the B programming language circa 1969 by Ken Thompson.[16]
See also
References
|
Portal di Ensiklopedia Dunia