Die arithmetischen Operatoren
Tabelle 7.2 Arithmetische Operatoren
Operator | Bedeutung | Beispiel |
---|---|---|
| Plus-Vorzeichen | x = +3; // x gleich 3 |
| Minus-Vorzeichen | x = -3; // x gleich -3 |
| Addition | x = 4 + 1; // x gleich 5 |
| Subtraktion | x = 4 – 1; // x gleich 3 |
| Multiplikation | x = 4 * 2; // x gleich 8 |
| Division | int x = 7 / 4; // x gleich 1 double x = 7 / 4; // x gleich 1.75 |
| Modulo (Rest der Division) | int x = 7 % 4; // x gleich 3 double x = 7 % 4; // x gleich 3 |
| Inkrement |
y = ++x ; // y gleich 4, x gleich 4 y = x++; // y gleich 3, x gleich 4 |
| Dekrement | y = --x; // y gleich 2, x gleich 2 y = x--; // y gleich 3, x gleich 2 |
Division und Modulo
Bei Verwendung der Operatoren zur Division und zur Modulo-Berechnung ist zu beachten, dass die Funktionsweise dieser ...
Get Microsoft Visual C# 2010 - Das Entwicklerbuch now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.