3

我是 C++ 新手,遇到了处理向量的问题。

我需要从另一个类访问在“GridClass”中声明的向量,因此我将向量声明为公共并尝试填充它。这是我的代码。

网格类.h

#include <vector>

class GridClass : public CDialog
{
    DECLARE_DYNAMIC(GridClass)

public:
    GridClass(CWnd* pParent = NULL);   // standard constructor
    virtual ~GridClass();

protected:
    int nItem, nSubItem;

public:
    std::vector<CString> str; // <--The vector

在GridClass.cpp中;

str.reserve(20);//This value is dynamic
for(int i=0;i<10;i++){
    str[i] = GetItemText(hwnd1,i ,1);// <-- The error occurs here
}

我不能使用数组,因为大小是动态的,我只使用 20 进行调试。我在这里做错了什么?

4

2 回答 2

6

std::vector::reserve只是增加向量的容量,它不分配元素,str.size()仍然0意味着向量是空的。在这种情况下你需要std::vector::resize :

str.resize(20);

或者只是打电话std::vector::push_back

str.reserve(20);   // reserve some space which is good. It avoids reallocation when capacity exceeds
for(int i=0; i<10; i++){
    str.push_back(GetItemText(hwnd1,i ,1)); // push_back does work for you.
}
于 2013-10-04T10:25:35.500 回答
4

调用后向量仍然为空reserve;您仍然需要使用 or 添加字符串,insert或者push_back使用 . 添加空字符串resize

要使用循环用十个字符串填充它,请使用push_back

for(int i=0;i<10;i++){
    str.push_back(GetItemText(hwnd1,i ,1));
}

或者,如果您想要 20 个字符串,分配前 10 个字符串并将其余字符串留空,那么您可以保留循环,但使用resize而不是reserve.

于 2013-10-04T10:28:18.720 回答