gpt4 book ai didi

c++ - 字符串数组 C++ 的段错误

转载 作者:行者123 更新时间:2023-11-30 05:47:33 25 4
gpt4 key购买 nike

这个程序是用 C 编写的,在我学习这门语言的过程中试图将一些程序转换为 C++。基本上是字符数组到字符串和一些输入/输出。唯一的问题是我在尝试将输入字符串放入字符串数组时出现段错误(test2 打印。test3 不打印)。

有什么想法吗?在学习 C++ 时我应该注意哪些不良编码习惯?

int main() {
int nstr=0, nchar=0, nint=0, nfloat=0;
string input;
int i, z=0;
float inputFloat;

string *strList = (string*)malloc(sizeof(string) * nstr);
char *charList = (char*)malloc(sizeof(char) * nchar);
int *intList = (int*)malloc(sizeof(int) * nint);
float *floatList = (float*)malloc(sizeof(float) * nfloat);

while (z != -42) {
cout << "Input: ";
cin >> input;
cin.ignore();

inputFloat = strtof(input.c_str(), NULL);

if (inputFloat) {
if (fmod(inputFloat, 1.0)) {
nfloat++;
floatList = (float*)realloc(floatList, sizeof(float) * nfloat);
floatList[nfloat-1] = inputFloat;
}
else {
nint++;
intList = (int*)realloc(intList, sizeof(int) * nint);
intList[nint-1] = (int)inputFloat;
}
}
else {
if (input.length() == 1) {
nchar++;
charList = (char*)realloc(charList, sizeof(char) * nchar);
if (input.at(0) == 10)
input = " ";
charList[nchar-1] = input.at(0);
}
else {
nstr++;
cout << "test1" << endl;
strList = (string*)realloc(strList, sizeof(string) * nstr);
cout << "test2" << endl;
strList[nstr-1] = input;
cout << "test3" << endl;
}
}

cout << "Integers: ";
for (i=0; i<nint; i++)
cout << intList[i] << " ";

cout << endl << " Floats: ";
for (i=0; i<nfloat; i++)
cout << floatList[i] << " ";

cout << endl << " Chars: ";
for (i=0; i<nchar; i++)
cout << charList[i] << " ";

cout << endl << " Strings: ";
for (i=0; i<nstr; i++)
cout << strList[i] << " ";
cout << endl << endl;
}
}

最佳答案

通常您不使用 malloc , calloc , realloc等在 C++ 中,即使你可以。它对于像 int、char 等简单项目意义不大,但在对象上使用时(如 std::string)会导致此类问题:

当这条线运行时:

string *strList = (string*)malloc(sizeof(string) * nstr);

您为字符串数组分配了存储空间,但您没有调用任何构造函数,因此您分配的所有存储空间仍然无用。

在 C++ 中你必须使用 new像这样:

string *strList = new string[nstr];

它更短、更容易并且调用每个分配对象的构造函数。

最后你用 delete [] 释放它像这样:

delete [] strList;

更好的是使用:

vector<string> strList;

并使用以下方法添加元素:

strList.push_back("something");strList.push_back(some_string);

vector s 负责内存分配和释放,并在生命周期结束时作为常规对象自动释放,因此根本不需要删除。

关于c++ - 字符串数组 C++ 的段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28522582/

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