gpt4 book ai didi

c++ - Windows API的STL成员变量初始化问题

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:36:46 27 4
gpt4 key购买 nike

我正在创建一个 Windows 应用程序,它使用字符串 vector 作为成员变量。出于某种原因,我可以编译但是当它试图获取任何 vector 成员时崩溃。错误是 0xC0000005:访问冲突读取位置 0xcdcdcdd9。在 vector 类的成员函数中。

这是它中断的 size() 函数。

size_type capacity() const
{ // return current length of allocated storage
return (this->_Myend - this->_Myfirst);
}

我使用的是 Visual Studios 2010。

谢谢 Django

最佳答案

问题不在于 STL 代码,而在于您的代码。

由于您没有粘贴代码,我将向您展示一个示例,说明您应该如何使用字符串 vector 。

std::vector<std::string> v;
v.push_back("hello");
v.push_back("world!");
//Note the above 2 string literals get implicitly converted to std::string
assert(v.size() == 2);
assert(v[0] == "hello");

关于c++ - Windows API的STL成员变量初始化问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2862236/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com