gpt4 book ai didi

c++ - munmap_chunk() : invalid pointer when using function templates

转载 作者:行者123 更新时间:2023-11-30 01:45:28 29 4
gpt4 key购买 nike

我的程序似乎崩溃了 munmap_chunk(): invalid pointer错误。这意味着某处一定是无效的破坏,无效的免费使用或类似的东西。但我不知道在哪里以及为什么。仍然给出此错误的简化代码如下(不要担心所有模板和东西,它在我的程序上下文中很有意义,没有它们我无法重现此错误。我只是对失败的原因感兴趣):

#include <iostream>
#include <string>
#include <string.h>

class db
{
public:
template<typename T>
struct Input { typedef T type; };

template<typename T>
void setValue(typename Input<T>::type newValue)
{
setValue(Input<T>(), newValue);
}
private:
void* data;
std::string setValue(Input<std::string>, typename Input<std::string>::type newValue)
{
data = (void*) new char[newValue.size()+1];
strcpy((char*)data, newValue.c_str());
std::cout << "string: \"" << (char*)data << "\"\n";
}
};

int main()
{
db dbObj;
std::string str = "Hello world";
dbObj.setValue<std::string>(str);
std::cout << "This is the end!\n";
return 0;
}

这在终端上给出了以下输出:

string: "Hello world"
*** Error in `/castor/Code/CodeBlocks/testCpp2/bin/Debug/testCpp2': munmap_chunk(): invalid pointer: 0x00007ffd229f8490 ***
======= Backtrace: =========
/usr/lib/libc.so.6(+0x72055)[0x7f39395ee055]
/usr/lib/libc.so.6(+0x779a6)[0x7f39395f39a6]
/castor/Code/CodeBlocks/testCpp2/bin/Debug/testCpp2[0x400e34]
/castor/Code/CodeBlocks/testCpp2/bin/Debug/testCpp2[0x400c82]
/usr/lib/libc.so.6(__libc_start_main+0xf0)[0x7f393959c610]
/castor/Code/CodeBlocks/testCpp2/bin/Debug/testCpp2[0x400b59]
======= Memory map: ========
00400000-00402000 r-xp 00000000 08:22 35002296 /castor/Code/CodeBlocks/testCpp2/bin/Debug/testCpp2
00601000-00602000 rw-p 00001000 08:22 35002296 /castor/Code/CodeBlocks/testCpp2/bin/Debug/testCpp2
00903000-00935000 rw-p 00000000 00:00 0 [heap]
7f393957c000-7f3939717000 r-xp 00000000 08:31 5246076 /usr/lib/libc-2.22.so
7f3939717000-7f3939916000 ---p 0019b000 08:31 5246076 /usr/lib/libc-2.22.so
7f3939916000-7f393991a000 r--p 0019a000 08:31 5246076 /usr/lib/libc-2.22.so
7f393991a000-7f393991c000 rw-p 0019e000 08:31 5246076 /usr/lib/libc-2.22.so
7f393991c000-7f3939920000 rw-p 00000000 00:00 0
7f3939920000-7f3939936000 r-xp 00000000 08:31 5246391 /usr/lib/libgcc_s.so.1
7f3939936000-7f3939b35000 ---p 00016000 08:31 5246391 /usr/lib/libgcc_s.so.1
7f3939b35000-7f3939b36000 rw-p 00015000 08:31 5246391 /usr/lib/libgcc_s.so.1
7f3939b36000-7f3939c33000 r-xp 00000000 08:31 5246131 /usr/lib/libm-2.22.so
7f3939c33000-7f3939e32000 ---p 000fd000 08:31 5246131 /usr/lib/libm-2.22.so
7f3939e32000-7f3939e33000 r--p 000fc000 08:31 5246131 /usr/lib/libm-2.22.so
7f3939e33000-7f3939e34000 rw-p 000fd000 08:31 5246131 /usr/lib/libm-2.22.so
7f3939e34000-7f3939fa6000 r-xp 00000000 08:31 5246435 /usr/lib/libstdc++.so.6.0.21
7f3939fa6000-7f393a1a6000 ---p 00172000 08:31 5246435 /usr/lib/libstdc++.so.6.0.21
7f393a1a6000-7f393a1b0000 r--p 00172000 08:31 5246435 /usr/lib/libstdc++.so.6.0.21
7f393a1b0000-7f393a1b2000 rw-p 0017c000 08:31 5246435 /usr/lib/libstdc++.so.6.0.21
7f393a1b2000-7f393a1b6000 rw-p 00000000 00:00 0
7f393a1b6000-7f393a1d8000 r-xp 00000000 08:31 5246074 /usr/lib/ld-2.22.so
7f393a396000-7f393a39c000 rw-p 00000000 00:00 0
7f393a3d5000-7f393a3d7000 rw-p 00000000 00:00 0
7f393a3d7000-7f393a3d8000 r--p 00021000 08:31 5246074 /usr/lib/ld-2.22.so
7f393a3d8000-7f393a3d9000 rw-p 00022000 08:31 5246074 /usr/lib/ld-2.22.so
7f393a3d9000-7f393a3da000 rw-p 00000000 00:00 0
7ffd229d8000-7ffd229f9000 rw-p 00000000 00:00 0 [stack]
7ffd229fb000-7ffd229fd000 r--p 00000000 00:00 0 [vvar]
7ffd229fd000-7ffd229ff000 r-xp 00000000 00:00 0 [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]

通过调试,我发现错误一定发生在函数 std::string setValue(Input<std::string>, typename Input<std::string>::type) 的末尾。 .然而,在这个函数中没有任何东西被释放或破坏。它只是分配空间并复制 newValue 的 c 字符串内容(属于 std::string 类型)到数据。数据不会在函数结束时被破坏,因为它是一个指针,对吧?我还尝试查看变量的地址 dbObj , str和指针的内容 data .但是,它们都不等于错误消息 (0x00007ffd229f8490) 中的那个。该错误发生在哪里以及为什么发生?

最佳答案

双参数 setValue 表现出未定义的行为,即在没有遇到 return 语句的情况下退出函数。它应该返回一个值,但从来没有返回。

关于c++ - munmap_chunk() : invalid pointer when using function templates,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34561878/

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