opPostInc
++
Префиксный унарный оператор инкремента.
class A {
int i;
float f;
A(int i, float f){
[[[this|this.html]]].i = i;
[[[this|this.html]]].f = f;
}
void opPostInc(){
i++;
f++;
}
}
void [[[main|main.html]]](){
A a(3, 5.f);
a++;
print(a.i + "\n"); // 4
print(a.f + "\n"); // 6
}
Last modified: 16 October 2024