- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 map
和 set
中插入新的类对象“Student
”(每个容器都有不同的 block 学生的)。为此,我使用了如下所示的 insert()
函数:
// Map:
M.insert({ tempID, new Student(tempID, nameTemp, addressTemp, phoneTemp, numClassesTemp, gpaSumTemp) });
// Set:
S.insert(new Student(tempID, nameTemp, addressTemp, phoneTemp, numClassesTemp, gpaSumTemp));
我的代码编译并运行良好,但内存泄漏检查器一直指向这两行。我要在某处使用 delete
吗?在哪里?还是我要在我的 Student 析构函数中包含一些东西?
我拿出一大块代码来演示问题,并将其放入下面的可编译文件中。 (我排除了我的 set
的代码,因为我相信我的 map
的代码足以找到内存泄漏的来源):
Student.h:
#pragma once
#include <sstream>
#include <iostream>
#include <fstream>
#include <iomanip>
#include <string>
#include <map>
#include <iterator>
#include <algorithm>
using namespace std;
class Student
{
public:
Student(unsigned long long int ID, string name, string address, string phone, int numClasses, double sum_gpa);
~Student();
unsigned long long int ID;
string name;
string address;
string phone;
int numClasses;
double gpaSum;
string getGPA();
string toString();
};
学生.cpp:
#include "Student.h"
Student::Student(unsigned long long int ID, string name, string address, string phone, int numClasses, double gpaSum)
{
this->ID = ID;
this->name = name;
this->address = address;
this->phone = phone;
this->numClasses = numClasses;
this->gpaSum = gpaSum;
}
Student::~Student()
{
}
string Student::getGPA(){
string getGPA;
stringstream ss;
if (numClasses == 0){
getGPA = "0.00";
}
else{
ss << fixed << setprecision(2) << gpaSum / numClasses;
ss >> getGPA;
}
return getGPA;
}
string Student::toString(){
string toString;
stringstream IDss;
stringstream GPAss;
string IDstr = "";
string GPAstr = "";
IDss << ID;
GPAss << getGPA();
IDss >> IDstr;
GPAss >> GPAstr;
toString += IDstr; toString += "\n"; toString += name; toString += "\n";
toString += address; toString += "\n"; toString += phone; toString += "\n";
toString += GPAstr;
IDss.clear();
GPAss.clear();
return toString;
}
GPA.h(GPA.h/cpp是map/set相关函数所在的地方):
#include "Student.h"
class GPA
{
public:
GPA();
~GPA();
map<unsigned long long int, Student*> M;
bool importStudents(string setFileName);
void clear();
int lineCounter(string fileName);
};
GPA.cpp
#include "GPA.h"
GPA::GPA()
{
}
GPA::~GPA()
{
}
bool GPA::importStudents(string mapFileName){
fstream mapFile(mapFileName);
/** vvv START: ERROR CHECKING vvv */
/* Check for Invalid File(s)*/
if (!mapFile){
mapFile.close();
return false;
}
mapFile.close();
/* Check for Incorrect Line Count for Files */
if (lineCounter(mapFileName) % 4 != 0){
return false;
}
/** ^^^ END: ERROR CHECKING ^^^ */
/** vvv START: IMPORT TO MAP vvv */
mapFile.open(mapFileName);
if (mapFile.is_open()){
unsigned long long int tempID = 0;
string dummySpace = "";
string nameTemp = "EMPTY";
string addressTemp = "EMPTY";
string phoneTemp = "EMPTY";
int numClassesTemp = 0;
double gpaSumTemp = 0;
while (mapFile >> tempID){
getline(mapFile, dummySpace);
getline(mapFile, nameTemp);
getline(mapFile, addressTemp);
getline(mapFile, phoneTemp);
M.insert({ tempID, new Student(tempID, nameTemp, addressTemp, phoneTemp, numClassesTemp, gpaSumTemp) });
cout << M.at(tempID)->toString() << "\n\n";
}
}
/** ^^^ END: IMPORT TO MAP ^^^ */
return true;
}
void GPA::clear(){
for (map<unsigned long long int, Student*>::iterator it = M.begin(); it != M.end(); ++it){
Student* m = it->second;
delete m;
}
M.clear();
}
int GPA::lineCounter(string fileName) {
std::ifstream myfile(fileName);
// new lines will be skipped unless we stop it from happening:
myfile.unsetf(std::ios_base::skipws);
// count the newlines with an algorithm specialized for counting:
unsigned line_count = std::count(
std::istream_iterator<char>(myfile),
std::istream_iterator<char>(),
'\n');
return line_count;
}
main.cpp :
#include "GPA.h"
using namespace std;
int main(){
GPA myGPA;
myGPA.importStudents("studentListMap_Small.txt");
myGPA.importStudents("studentListMap_Large.txt");
myGPA.clear();
return 0;
}
studentListMap_Small.txt:
020961797
Joshua Cooper
0509 McCrooke Avenue, Columbus, California 52826
552-534-8671
283385788
Yazan Halawa
6707 Law Street, Madison, Alaska 01322
351-385-5237
322058308
Adam Fudge
1395 Department Street, Raleigh, Arizona 34983
287-570-5987
011812277
Paul Gibby
0940 Venice Street, Concord, Delaware 18729
779-320-4502
studentListMap_Large.txt:
105396824
Justin Roberts
9459 Barn Street, Bismarck, Illinois 80517
739-784-0853
760491717
Marcus Tanner
3493 Mill place, Atlanta, Virginia 96801
227-268-5713
417607834
Meza Rodolfo Amaya
8345 Dean Avenue, Albany, New Mexico 22539
596-579-2033
125363151
Paul Thornton
5944 Prague Avenue, Montpelier, Ohio 06867
181-920-3767
978344395
Brett Turley
2780 Jameson's Crossing, Frankfort, Rhode Island 55970
419-435-4046
850843037
Evan Bradham
8356 Venice Street, Raleigh, Pennsylvania 11096
573-496-1240
921190591
Sam Duzett
0767 Delaware Avenue, Jefferson City, South Dakota 48720
516-295-0387
870255828
Nathaniel Merrill
0776 P. Auerbach Avenue, Lincoln, South Carolina 59051
703-933-0882
819890357
Mark Solocinski
9900 Flower Avenue, Sacramento, Washington 09677
613-592-1728
020961797
Joshua Cooper
0509 McCrooke Avenue, Columbus, California 52826
552-534-8671
283385788
Yazan Halawa
6707 Law Street, Madison, Alaska 01322
351-385-5237
322058308
Adam Fudge
1395 Department Street, Raleigh, Arizona 34983
287-570-5987
011812277
Paul Gibby
0940 Venice Street, Concord, Delaware 18729
779-320-4502
716843573
Fridrich Perez
7656 Bay Avenue, Annapolis, Maryland 20056
469-205-9082
634930318
Michael Douglas
5575 Southern Abby Avenue, Springfield, Georgia 68675
135-483-5225
192066959
Michelle Stevens
6698 Southern Abby Avenue, Columbia, Illinois 70022
887-493-1163
741281027
Jesse Millar
7968 Museum Avenue, Des Moines, Montana 33359
084-086-9848
091487171
Sam Zamora
3657 Newhaven Avenue, Oklahoma City, Pennsylvania 32206
900-392-2156
919403007
Mark Petersen
5858 Walden Alley, Harrisburg, Louisiana 00923
802-942-4624
432610620
Chase Lundell
6721 Central cesta, Helena, Kansas 64600
300-892-2067
038218766
Ryan Bullock
7125 Eppink Square, Indianapolis, Oregon 83838
720-648-3033
207448181
Oliveros Isai Mercado
1910 King Arthur I street, Lansing, Illinois 09861
340-027-8892
578873248
Minh Do
4467 Shopping Avenue, Atlanta, Idaho 46028
489-286-6549
286617977
Anthony Constantino
2868 Highway Avenue, Harrisburg, New Mexico 62475
150-412-3674
425049135
Daniel Feller
5350 Wallstreet and, Jefferson City, Ohio 98281
422-317-1595
738936225
Scott Ryvola
7307 Flower Avenue, Pierre, Wyoming 63056
210-827-1370
383308329
David Christenson
3984 Farmer's Lane, Hartford, Florida 55765
433-499-4397
666537985
Jannae Turley
6624 Camp Street, Austin, Montana 47779
474-205-0411
356559266
Michael Kredt
1489 Francis II Street, Bismarck, Tennessee 25004
386-269-4228
535348580
Nathan Radmall
8557 Hazlett Avenue, Atlanta, Massachusetts 44369
742-936-1925
530941737
Elora Salway
8754 Queen Mary Elisabeth Alley, Springfield, Alaska 81279
215-936-2915
441365589
Cody Burt
7738 Pine Street, Carson City, Maryland 51525
407-433-7728
880738319
Mercedes Reuel
4341 Long Road Avenue, Augusta, Tennessee 93916
305-649-3653
212067186
Adam Petersen
4709 Delta Street, Raleigh, South Dakota 30268
233-788-2153
835850757
Josh Humpherys
9020 Dimitri Street, Austin, Missouri 24887
976-602-4146
318093806
Scott Saunders
3353 Jamal Hustrova Street, Santa Fe, Illinois 94000
117-310-0358
398071827
Young Tai Ahn
8528 P. Auerbach Avenue, Richmond, Indiana 38480
261-814-2605
994452189
Cherrez Andres Galan
8562 Theater Street, Boston, Ohio 54016
075-419-3779
409268016
Mat Weaver
5060 Democracy Avenue, Sacramento, South Dakota 98824
494-586-1315
725157853
Cache Staheli
7012 Industry Street, Bismarck, Mississippi 28517
453-814-0513
313757119
Christian Beesley
3126 Hendrix Avenue, Raleigh, Oklahoma 65343
173-132-3679
229435544
Dallin Cox
7264 Federation Avenue, Salem, Tennessee 37878
395-058-1800
670706814
Sam Warnick
4962 Swamp Street, Montpelier, Virginia 28540
956-752-0303
810564069
Marshall Garey
5532 Hospital Street, Harrisburg, Utah 82578
857-706-9850
139697451
Nick Wahlin
7391 Wallstreet and, Boise, Alabama 35351
629-249-0451
647744778
Nicole Viland
3063 McCrooke Avenue, Montpelier, Hawaii 48041
770-835-5060
351953580
Spencer Stock
2949 Storm Alley, Phoenix, Maryland 05300
728-001-4076
685585839
Kyle Brown
4594 Long Road Avenue, Madison, West Virginia 46981
146-275-4304
079800628
Kyle Baker
6311 Monorail Street, Charleston, Indiana 71229
762-043-7717
996857052
Jordon Ritchie
3093 New Orleans Street, Little Rock, New Hampshire 48740
457-081-6324
585472870
Jason Sevey
0405 Beatles Avenue, Charleston, Idaho 96140
829-676-5844
363108475
Sean Miller
6961 Prague Avenue, Sacramento, Louisiana 54034
008-074-9144
595315616
Raphael Pak
0703 Forest Street, Saint Paul, Washington 76921
920-396-7339
420195410
Trevor Savage
2797 Katrina Street, Little Rock, Colorado 16981
371-187-7168
451471400
Trenn Brown
3970 Adelaide Avenue, Harrisburg, Pennsylvania 99190
538-118-5794
562466352
Mackenzie Wilson
2375 Heritage Avenue, Raleigh, North Carolina 17052
489-945-0146
103805170
Samuel Lyons
6205 Mayores Road, Santa Fe, Oklahoma 44576
819-831-2871
017825823
Andrew Mello
4533 Oceana Side-Street, Juneau, New Mexico 76672
250-576-9630
902845517
Landen Barr
7033 Stone Street, Madison, South Carolina 46058
469-236-1694
819361221
Sam Farnsworth
2066 Vienna Street, Harrisburg, West Virginia 45424
412-423-4694
468756954
NATHAN Stout
0576 Maple Street, Atlanta, Mississippi 32910
555-392-3427
222487207
Justin Esplin
2874 Flower Avenue, Providence, Florida 61584
246-972-5978
996718409
Jonathan Hodnett
8498 Sylvania Avenue, Honolulu, Massachusetts 79595
183-590-7272
364801603
Garrett Porter
0732 Oceana Side-Street, Juneau, West Virginia 39951
883-447-9680
memory_leak_report.txt:
最佳答案
每个 new
都需要一个匹配的 delete
。
看起来 GPA
是这些对象的所有者,因为它包含 M
和 S
,因此您应该在 中删除它们>GPA
的析构函数。
您可以通过遍历 M
和 S
并删除
每个元素来做到这一点。
旁注:你可以替换
fstream mapFile(mapFileName);
mapFile.close();
mapFile.open(mapFileName);
与
fstream mapFile(mapFileName);
和
while (mapFile.is_open())
{
// ...
mapFile.close();
}
与
if (mapFile.is_open())
{
// ...
}
文件流在其生命周期结束时关闭,您无需手动执行此操作。
关于c++ - 映射/集合中插入(新类对象)的内存泄漏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33957520/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!