重载右自增操作符 base operator++(int) { base *p=new base; p->n=n++; return *p; }base是一个类 n 为其私有成员。怎么样在使用完*p之后将齐所占内存释放?