- 2
Как он может мне пригодиться?
Безусловно, что это достаточно интересные функции x++ и ++x, но где может пригодиться такое различие, ведь фактически можно написать y=x; x++; вместо y=++x; Всего лишь для сокращения кол-ва строк? Буду благодарен, если приведете примеры!
1 Odpowiedź
+ 2
I would like to answer your question, but unfortunately I don't understand nor can read the language you wrote in. Looking at the keywords (++x, x++) I assume you'd like some explanation about the difference between these two operators.
++x first adds one to x and then executes the operator.
x++ first executes the operator and adds one to x afterwards.
Assume y=0 and x=5.
The statement y=++x gives y=6 and x=6
The statement y=x++ gives y=5 and x=6
I hope this answers your question.
If not, please post in English or German.