我试图在MFC中创建一个二维List,以便保存和处理一些int和CString数据。所以,我尝试过这样的事情:
#include "A.h"
//A.cpp
A::A()
{
}
A::~A()
{
}
//**********************
#pragma once
// A.h
class A: public CObject
{
public:
A();
virtual ~A();
int ID;
CString label;
};
//**********************
#include "A.h"
#pragma once
// B.h
class B : public CObject
{
public:
B();
virtual ~B();
int anotherID;
CString anotherLabel;
CList<A*, A*&> * AList;
CList<CString, CString&> * TestList;
};
//Note: B.cpp is pretty much the same as A.cpp
//*********************
//C.cpp
void C::Foo()
{
B * b = new B;
A * a = new A;
a->ID = 1;
a->label = L"something";
b->AList->AddTail(a); //Assertion error!
CString aux = L"another thing";
b->TestList->AddTail(aux); //Assertion error!
}
问题在于:当我尝试使用AddList()方法时,收到错误“访问冲突读取位置”。我首先认为问题与CObject派生类有关,但我不确定这是否是真正的问题。我也试过做一些新的删除重载,但问题变得更糟。 有什么想法吗?
答案 0 :(得分:0)
列表元素都被声明为指针,因此您需要分配它们或将它们声明为
CList<A*, A*&> AList; // without the "*"
CList<CString, CString&> TestList; // without the "*"