gpt4 book ai didi

C——基本结构问题

转载 作者:太空宇宙 更新时间:2023-11-04 05:14:15 24 4
gpt4 key购买 nike

所以我现在正在尝试学习 C,我有一些基本的结构问题想弄清楚:

基本上,一切都围绕着这段代码:

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

#define MAX_NAME_LEN 127

typedef struct {
char name[MAX_NAME_LEN + 1];
unsigned long sid;
} Student;

/* return the name of student s */
const char* getName (const Student* s) { // the parameter 's' is a pointer to a Student struct
return s->name; // returns the 'name' member of a Student struct
}

/* set the name of student s
If name is too long, cut off characters after the maximum number of characters allowed.
*/
void setName(Student* s, const char* name) { // 's' is a pointer to a Student struct | 'name' is a pointer to the first element of a char array (repres. a string)
s->name = name;
}

/* return the SID of student s */
unsigned long getStudentID(const Student* s) { // 's' is a pointer to a Student struct
return s->sid;
}

/* set the SID of student s */
void setStudentID(Student* s, unsigned long sid) { // 's' is a pointer to a Student struct | 'sid' is a 'long' representing the desired SID
s->sid = sid;
}

我对代码进行了注释,试图巩固我对指针的理解;我希望他们都是准确的。

所以无论如何,我觉得 setName 和 setStudentID 不正确,但我不确定为什么。有人可以解释吗?谢谢!

编辑:

 char temp
int i;
for (i = 0, temp = &name; temp != '\0'; temp++, i++) {
*((s->name) + i) = temp;

最佳答案

你没有用这个复制全名数组

void setName(Student* s, const char* name) { 
s->name = name;
}

试试这个

strcpy(s->name,name);

将此字符串复制到您的结构数组。您不能像当前那样简单地将指针参数分配给数组变量。您需要将 name 指向的每个字符复制到数组 s->name 的元素中。 strcpy 将执行此操作 - 它将元素从源复制到目标,直到找到终止空字符。

编辑:或者,您可以按照评论中的建议使用 strncpy。检查这个问题及其答案,看看为什么有些人认为这是个好主意 Why should you use strncpy instead of strcpy?

关于C——基本结构问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12337985/

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