我正在尝试编写一对写/读对函数,用于分别将std::set< T >
数据容器存储到二进制文件中/从二进制文件中检索。我的writeSet()
函数似乎可以正常工作,并存储std::set< T >
个数据容器而没有任何明显的问题。但是readSet()
函数没有,并抛出&#34;未处理的异常[...]访问冲突读取位置0xFEEEFEF6。&#34; main()
函数返回EXIT_SUCCESS
后的异常。
到目前为止,我可以调试(使用Visual Studio 2013),readSet()
实际上似乎成功读取二进制文件并正确地将数据分配给已寻址的std::set< T >
数据容器。当VS2013崩溃时,它为我提供了打破程序执行的机会,并指出我在xtree.h头文件中出错。具体来说,调试器会抱怨_Pnext
以下部分的行|| _Ptr != 0 && (*_Pnext)->_Ptr != _Ptr)
:
#if _ITERATOR_DEBUG_LEVEL == 2
void _Orphan_ptr(_Myt& _Cont, _Nodeptr _Ptr) const
{ // orphan iterators with specified node pointers
_Lockit _Lock(_LOCK_DEBUG);
const_iterator **_Pnext = (const_iterator **)_Cont._Getpfirst();
if (_Pnext != 0)
while (*_Pnext != 0)
if ((*_Pnext)->_Ptr == this->_Myhead
|| _Ptr != 0 && (*_Pnext)->_Ptr != _Ptr)
_Pnext = (const_iterator **)(*_Pnext)->_Getpnext();
else
{ // orphan the iterator
(*_Pnext)->_Clrcont();
*_Pnext = *(const_iterator **)(*_Pnext)->_Getpnext();
}
我的最小工作解决方案如下:
writeSet()
:写入std :: set&lt; T>进入二进制文件
template < class T >
void writeSet(const std::string& filePath, const std::string fileName, std::set<T>& data)
{
// Construct binary file location string using filePath and fileName inputs
std::stringstream file; file << filePath.c_str() << "/" << fileName.c_str();
std::ofstream fileStream; fileStream.open(file.str().c_str(), std::ios::out | std::ios::binary);
// First write number of std::set elements held by data, and then write std::set block to binary file
std::set<T>::size_type n = data.size();
fileStream.write(reinterpret_cast<char*>(&n), sizeof(std::set<T>::size_type));
fileStream.write(reinterpret_cast<char*>(&data), sizeof(T)*n);
fileStream.close();
}
readSet()
:读取std :: set&lt; T>来自二进制文件
template < class T >
void readSet(const std::string& filePath, const std::string fileName, std::set<T>& data)
{
// Construct binary file location string using filePath and fileName inputs
std::stringstream file; file << filePath.c_str() << "/" << fileName.c_str();
std::ifstream fileStream; fileStream.open(file.str().c_str(), std::ios::in | std::ios::binary);
// First read number of elements stored in binary file, then write file content to adresses std::set data variable
std::set<T>::size_type n;
fileStream.read(reinterpret_cast<char*>(&n), sizeof(std::set<T>::size_type));
fileStream.read(reinterpret_cast<char*>(&data), sizeof(T)*n);
fileStream.close();
}
main()
:最小的主要功能,它会再现&#34;未处理的异常&#34;错误
#include <fstream>
#include <iostream>
#include <set>
#include <sstream>
#include <string>
int main()
{
// Define binary file read/write directory
const std::string path("C:/data");
// writeSet() testing...
std::set<int> writeSetData;
writeSetData.insert(1); writeSetData.insert(3);
writeSetData.insert(0); writeSetData.insert(2);
writeSet(path, "binaryFile", writeSetData);
// readSet() testing...
std::set<int> readSetData;
readSet(path, "binaryFile", readSetData);
std::cout << "readSetData= {";
for (std::set<int>::iterator it = readSetData.begin(); it != readSetData.end(); ++it){
std::cout << *it << ", ";
} std::cout << "}" << std::endl;
return EXIT_SUCCESS;
}
答案 0 :(得分:1)
您的所有T
个POD都是?否则,制作二进制副本几乎毫无意义,而不是创建语义副本
此外,集合管理的数据保存在set
管理的动态分配内存中,而不是set
本身。
作为第三点,每当你试图在那里写出任意数量的元素时,这个空间就不会神奇地增长或缩小
您必须通过手动插入元素来要求设置增长!
作为旁注,std::string
对字符串连接完全正常,没有必要突破std::stringstream
!