作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试计算一个长字符串的长度,但是 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/
我正在尝试计算一个长字符串的长度,但是 strlen 函数对于以下代码示例无法给出 SEGFAULT。 #include #include #include using namespace st
我是一名优秀的程序员,十分优秀!