gpt4 book ai didi

c++ - 二维字符指针数组 --> 段错误?

转载 作者:行者123 更新时间:2023-11-30 03:06:15 25 4
gpt4 key购买 nike

我必须创建一个二维字符指针数组。该数组将存储名称和姓氏列表 - 第 0 行将保存姓名,第 1 行将保存姓氏。这是我到目前为止编写的代码(该文件包含在主文件中):

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

using namespace std;

char ***persons;

void createArray(int n)
{
*persons = new char * int[n];
for(int i=0; i<n; i++)
*persons[i]=new char[n];
}

main 调用这个函数:

createArray(3);

但是当我运行它时,我不断收到“Segmentation Fault”,我不知道为什么

我该如何解决这个问题?

最佳答案

如果您使用的是 C++,请考虑使用 std::string 的二维数组,因为它会更简洁一些。此外,多维数组使用起来总是很糟糕,因为它们使代码不可读并导致很多困惑(因为您不会经常对哪个维度代表什么感到困惑)。因此,我强烈建议您考虑为每个人使用一个结构(有 2 个字段,first_name 和 last_name)。

无论如何,如果您想采用您的方法,请按以下方法操作:

char*** people;

int n = 2; // two elements, name and surname
int m = 5; // number of people

people = new char**[m];
for (int i = 0; i < m; i++) {
people[i] = new char*[n];
}

关于c++ - 二维字符指针数组 --> 段错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6807617/

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