重複の可能性:
Why should we typedef a struct so often in C?
Difference between ‘struct’ and ‘typedef struct’ in C++?structを宣言するときにtypdefを使用するときの違いは何ですか?
次の型宣言の違いは何ですか?私は
struct
{
int age;
}Person;
を作成して、無名の構造体のインスタンスを理解
struct Person
{
int age;
};
typedef struct
{
int age;
}Person;
は
struct Person
{
int age;
};
は人と呼ばれるタイプではなく、インスタンスを宣言した人を、と呼ばれます。しかし、私はまだtypedefが何をするのか分からない。
はhttp://stackoverflow.com/questions/612328/difference-between-struct-and-typedef-struct-in-c – Laserallan
の複製および少なくとも半ダースの他の質問のように思えます。 – jalf