Stavo leggendo "The C ++ Programming Language" di Stroustrup, dove dice che tra due modi per aggiungere qualcosa a una variabile x = x + a; e x += a; Preferisce +=perché molto probabilmente è meglio implementato. Penso che voglia dire che funziona anche più velocemente. Ma lo è davvero? …
Consideriamo il seguente codice: int main() { int i = 2; int b = ++i++; return 3; } Si compila con il seguente con un errore: <source>: In function 'int main()': <source>:3:16: error: lvalue required as increment operand 3 | int b = ++i++; | ^~ Mi sembra giusto. L'incremento …
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.