0

我试图在 MFC 中创建一个二维列表,以便保存和处理一些 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 派生类有关,但我不确定这是否是真正的问题。我也尝试过一些新的和删除的重载,但问题变得更糟了。有任何想法吗?

4

1 回答 1

0

两个列表元素都声明为指针,因此您需要分配它们或将它们声明为

CList<A*, A*&> AList;              // without the "*"
CList<CString, CString&> TestList; // without the "*"
于 2013-08-08T06:39:35.337 回答