gpt4 book ai didi

c - 为什么我在这里遇到段错误?需要帮忙。想要将整数放入 char 指针数组

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

#include <stdio.h>

#include <stdlib.h>
int main()
{
int num = 1;
char* test[8];
sprintf(test[0],"%d",num);
printf("%s\n",test[0]);

}

最佳答案

char *test[8]是 8 个 char * 的数组,或指向字符串的指针,并且由于您未指定,因此它们都设置为垃圾值。所以sprintf正在尝试将数据写入谁知道的地方。

你应该使用 char test[8]相反,它分配了一个 8 char 的数组, 然后 sprintf(test, "%d", num); .

更新:如果你想使用 char *指针,你应该分配空间:

char *test = malloc(8 /* see note below */);
sprintf(test, "%d", num);

如果你想使用 char * 的数组指针,它的工作原理是一样的:

char *test[8]; // 8 pointers to strings
test[0] = malloc(8); // allocate memory for the first pointer
sprintf(test[0], "%d", num);

请记住,您必须调用 malloc对于每个 test[0]通过test[7]单独。

此外,如评论中所述,如果您的编译器支持它,您应该使用 snprintf() .就像sprintf但它需要一个额外的参数,即缓冲区的大小:

snprintf(test, 8, "%d", num);

并保证不会使用超过您允许的空间。它更安全,如果需要,snprintf返回它实际需要的空间量,所以如果你给它的空间太小,你可以 realloc然后重试。

注意:有些人会说这应该是malloc(8 * sizeof(char)) (或 sizeof *test )。他们错了(在我的客观正确意见中;注意讽刺)! sizeof(char)保证为 1,所以这个乘法是不必要的。

有些人提倡使用TYPE *p = malloc(x * sizeof *p)这样,如果 TYPE 发生变化,您只需在一个地方进行更改,并且 sizeof *p会适应的。我是这些人中的一员,但我认为您很少需要升级 char *到另一种类型。由于这么多功能使用 char *并且需要在这样的升级中进行更改,我不担心制作 malloc线路更灵活。

关于c - 为什么我在这里遇到段错误?需要帮忙。想要将整数放入 char 指针数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4211433/

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