我面临堆损坏错误:我有一个 dll 和 TestAPP。
vector<Point> vInPts;
// 测试应用程序 - 转储输入如下vInPts.push_back(Point(730,405)); vInPts.push_back(Point(319,680)); vInPts.push_back(Point(292,757)); vInPts.push_back(Point(318,756)); vInPts.push_back(Point(726,736)); vInPts.push_back(Point(344,731));
vector<Point> vOutPts;
vInPts
调用 DLL -> 将相同的向量复制到vOutPts
DLL 中的向量” -> 从该函数返回到 TestApp 时 -> 出现堆错误。现在面临堆错误
如何修复此堆错误?
提前致谢 !!!