内存泄漏问题

Person 的 name 字段申请内存未释放
This commit is contained in:
thewalkers 2022-07-22 23:04:28 +08:00 committed by GitHub
parent 9f58fef2ce
commit 73993206a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,9 @@ struct Person
{ //职工基本信息的结构
double salary;
char *name;
~Person() {
delete []name;
}
};
class SalaryManaege
{