在Report45188264-1551.vspx
诊断会话之后,会有大型文件,例如class Shape {
public:
virtual void draw()
{
cout << "Shape::draw\n";
}
void erase()
{
cout << "Shape::erase \n";
}
void redraw(){
erase(); draw();
}
};
class Circle:public Shape{
public:
virtual void draw()
{
cout << "Circle::draw\n";
}
void erase(){
cout << "Circle::erase\n";
}
};
void main(){
Circle c;
Shape s1 = c;
Shape& s2 = c;
Shape* s3 = &c;
c.redraw();
s1.redraw();
s2.redraw();
s3.redraw();
}
,大小为320 MB或更多。
我必须手动删除这些文件,还是有办法自动删除?