重载运算符
标准形式 bool operator <(const Stu &W) const { if (total != W.total) return total < W.total; if (y != W.y) return y < W.y; return id > W.id; } 比较多个