gpt4 book ai didi

c++ - 带有 strlen 的 SEGEGV 用于长字符串

转载 作者:行者123 更新时间:2023-11-28 04:43:23 25 4
gpt4 key购买 nike

我正在尝试计算一个长字符串的长度,但是 strlen 函数对于以下代码示例无法给出 SEGFAULT。

#include <iostream>
#include <stdlib.h>
#include <cstring>

using namespace std;

const char * genstring( long len){
string str,str1;
char *c;
int min=97, max = 122;
int output;

for( long i=0; i<len; i++){

output = min + (rand() % static_cast<int>(max - min ));
str = (char)output;
str1.append(str);

}
c = (char *)str1.c_str();

return (const char*)c;

}

int main(){
const char *s = genstring(100000);
cout << strlen(s);

}

gdb报错如下

Program received signal SIGSEGV, Segmentation fault.
strlen () at ../sysdeps/x86_64/strlen.S:203
203 ../sysdeps/x86_64/strlen.S: No such file or directory.

但是对于 60k 的长度,同样的程序可以工作。同样的程序也使用 clang 运行而没有任何段错误。

最佳答案

当您从函数返回时,对象 str1 被销毁,因此似乎无法保证从 c_str 返回。您需要为此分配一个新字符串,例如:

c = strdup(str1.c_str()); // nb call free on the memory when done

您需要调用 free当您处理完从 strdup 返回的字符串时.

编辑
This reference to c_str确实还说对原始字符串对象的任何字符串操作都会使返回的 c_str 无效。销毁对象(通过在您的情况下返回)绝对符合操纵!

关于c++ - 带有 strlen 的 SEGEGV 用于长字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49761078/

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