結構體的三種定義方法

結構體的三種定義方法 單獨定義: 先定義結構體類型,再定義變量 struct student{ int age; string name; }; struct student s1,s2; 混合定義 定義結構體類型時,同時定義結構變量 struct student{ int age; string name; }s1,s2; 其中,s1,s2是變量 無類型名定義 struct { int age;
相關文章
相關標籤/搜索