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