假设我们有这两个结构:
struct date
{
int date;
int month;
int year;
};
struct Employee
{
char ename[20];
int ssn;
float salary;
struct date dateOfBirth;
};
如果我想使用结构的一个成员将它发送给一个函数,那么就说我们有这个函数:
void printBirth(date d){
printf("Born in %d - %d - %d ", d->date, d->month, d->year);
}
我的理解是,如果我定义一个员工,我想打印他的出生日期,我会这样做:
Employee emp;
emp = (Employee)(malloc(sizeof(Employee));
emp->dateOfBirth->date = 2; // Normally, im asking the user the value
emp->dateOfBirth->month = 2; // Normally, im asking the user the value
emp->dateOfBirth->year = 1948; // Normally, im asking the user the value
//call to my function :
printBirth(emp->dateOfBirth);
但是当我这样做时,我收到一个错误: 警告:从不兼容的指针类型传递'functionName'的参数1(在我们的例子中,它将是printBirth)。
我知道如果函数可以使用struct date的指针,但我没有那个选项会更容易。该函数必须接收结构日期作为参数。
所以我想知道如何将结构中定义的结构传递给函数。
非常感谢。
答案 0 :(得分:0)
试试这段代码
#include <stdio.h>
typedef struct
{
int date;
int month;
int year;
} date;
typedef struct
{
char ename[20];
int ssn;
float salary;
date dateOfBirth;
} Employee;
void printBirth(date *d){
printf("Born in %d - %d - %d \n", d->date, d->month, d->year);
}
int main ()
{
Employee emp;
emp.dateOfBirth.date = 2;
emp.dateOfBirth.month = 2;
emp.dateOfBirth.year = 1948;
printBirth(&emp.dateOfBirth);
}
我建议您在使用结构时使用typedef
。如果您正在使用typedef
,则不再需要通过使用typedef代码来编写struct
更加清晰,因为它提供了更多抽象的smidgen