Können Sie mir die Ausgabe dieses Java-Codes erklären? int a=5,i; i=++a + ++a + a++; i=a++ + ++a + ++a; a=++a + ++a + a++; System.out.println(a); System.out.println(i); Die Ausgabe beträgt in beiden Fällen 20
Ich lerne gerade C ++ und habe vor einiger Zeit etwas über die Inkrementierung gelernt. Ich weiß, dass Sie "++ x" verwenden können, um die Inkrementierung vorher vorzunehmen, und "x ++", um sie danach durchzuführen. Trotzdem weiß ich wirklich nicht, wann ich eines der beiden verwenden soll ... Ich habe …
Anscheinend ist auf meinem Windows 8-Laptop mit HotSpot JDK 1.7.0_45 (wobei alle Compiler- / VM-Optionen auf Standard gesetzt sind) die folgende Schleife final int n = Integer.MAX_VALUE; int i = 0; while (++i < n) { } ist mindestens 2 Größenordnungen schneller (~ 10 ms gegenüber ~ 5000 ms) als: …
Betrachten wir den folgenden Code: int main() { int i = 2; int b = ++i++; return 3; } Es wird mit folgendem Fehler kompiliert: <source>: In function 'int main()': <source>:3:16: error: lvalue required as increment operand 3 | int b = ++i++; | ^~ Das klingt fair für mich. …
We use cookies and other tracking technologies to improve your browsing experience on our website,
to show you personalized content and targeted ads, to analyze our website traffic,
and to understand where our visitors are coming from.
By continuing, you consent to our use of cookies and other tracking technologies and
affirm you're at least 16 years old or have consent from a parent or guardian.