struct
を使用してヒープ上にmalloc
を作成する方法を理解しています。スタック上のCでstruct
を作成することに関するすべてのドキュメントを探していました。ヒープ上の構造体の作成についてのみ話しているようです。
スタックで変数を宣言するのと同じ方法:
struct my_struct {...};
int main(int argc, char **argv)
{
struct my_struct my_variable; // Declare struct on stack
.
.
.
}
スタック上で構造体を宣言するには、通常の/非ポインター値として宣言するだけです
typedef struct {
int field1;
int field2;
} C;
void foo() {
C local;
local.field1 = 42;
}
このように動作するようになりました:
#include <stdio.h>
struct Person {
char *name;
int age;
int height;
int weight;
};
int main(int argc, char **argv)
{
struct Person frank;
frank.name = "Frank";
frank.age = 41;
frank.height = 51;
frank.weight = 125;
printf("Hi my name is %s.\n", frank.name);
printf("I am %d yeads old.\n", frank.age);
printf("I am %d inches tall.\n", frank.height);
printf("And I weigh %d lbs.\n", frank.weight);
printf("\n-----\n");
struct Person joe;
joe.name = "Joe";
joe.age = 50;
joe.height = 93;
joe.weight = 200;
printf("Hi my name is %s.\n", joe.name);
printf("I am %d years old.\n", joe.age);
printf("I am %d inches tall.\n", joe.height);
printf("And I weigh %d lbs.\n", joe.weight);
return 0;
}