gpt4 book ai didi

c - 将指针存储在 vector 中

转载 作者:行者123 更新时间:2023-11-30 17:00:45 27 4
gpt4 key购买 nike

我正在尝试将指针存储在 vector 中,但显示一条警告消息:
p.c:在函数“main”中:
p.c:22:6:警告:来自不兼容指针类型的赋值[默认启用]
V[0] = 数字;

我明白消息的含义,但无法修复错误。我不确定 vector 声明或结构是否错误(或两者都错误)!

感谢您的帮助!

举个例子:

#include <stdio.h>
#include <stdlib.h>

void show(int *V[]);

struct age{
int age;
struct age *next;
};
typedef struct age Age;

int main(){
int *V[3]; // Vector with 3 positions to store pointers

Age* number = (Age *) malloc(sizeof(Age));
number->age = 20;
number->next = NULL;

V[0] = number;

show(V);

return 0;
}

void show(int *V[])
{
printf ("\n%p\n",V[0]);
}

最佳答案

我认为问题在于 V 数组是一个 int 数组,因为它应该是一个 Age 数组。

你应该像这样实例化它:

Age *V[3];

希望对你有帮助:)

(如果您只想要一个通用指针数组,请使用 void* 但我不适合这个问题)

关于c - 将指针存储在 vector 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37368139/

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