class 内有定义set< int*> queue=new set<int>()每次建立对象时,是重新建立一个int类的set,还是在原set再加个int类数据?
重新建立一个新的,new分配了新的内存。