C言語での次の違いは何ですか:
typedef enum month_t
{
jan,
feb,
march
}month;
と
typedef enum
{
monday,
tuesday,
wednesday
}day;
この質問を投稿する前に、私はこれを読みました: What is a typedef enum in Objective-C?
でもよくわからなかった…。
C言語での次の違いは何ですか:
typedef enum month_t
{
jan,
feb,
march
}month;
と
typedef enum
{
monday,
tuesday,
wednesday
}day;
この質問を投稿する前に、私はこれを読みました: What is a typedef enum in Objective-C?
でもよくわからなかった…。