我们这里选择重点讲解前置/后置自增的重载 前置/后置自减就是一个道理啦
前置自增 num 前置自增:先自增再取值 重载前置自增允许有两种形式
成员函数:
num.operator()
Data &operator();全局函数:
operator(num)
Data &operator(Data &);需要提醒大家…
题目链接:https://cn.vjudge.net/contest/272792#problem/E
E - New Year Snowmen
As meticulous Gerald sets the table and caring Alexander sends the postcards, Sergey makes snowmen. Each showman should consist of three snowballs: a big one, a mediu…
1.概要
1.1可重载运算符
可重载运算符说明 x, -x, !x, ~x, , --, true, falsetrue和 false 运算符必须一起重载。 x y, x - y, x * y, x / y, x % y, x & y, x | y, x ^ y, x << y, x >> y, x >>> y x y, x ! y, x < y, x > y, x < y,…