1 結構體 與類的相同點
都可以將多個資料封裝為1個整體
struct date
@inte***ce date :nsobject
@end
2 結構體與類的不同點
1) 結構體只能封裝資料 而類不僅可以封裝資料 還可以封裝行為。
2) 1結構體變數分配 在棧空間 (如果是1個區域性變數的情況下
而物件分配在堆空間
沾的特點 空間相對較小 但是儲存在棧中的資料訪問的效率更高一些
堆的特點 空間相對較大, 但是儲存在堆中的資料訪問的效率相對要低
儲存在棧中的資料訪問效率高,儲存在堆中的資料訪問效率低
3)賦值
結構體 student
類 perosn
student s1 = ;
student s2 = s1;
person *p1 = [person new];
person *p2 = p1;
3 .應用場景
1) 如果表示的這個實體 不僅是由多個資料組成 ,這個是實體還有行為 ,不解釋 只能使用類
2) 如果表示的實體沒有行為 光有屬性
a。 如果屬性較少 只有幾個 那麼這個時候就定義為結構體,分配在沾 提高效率
b 如果屬性較多 不要定義成結構體
因為這樣結構體變數會在棧中佔據很大1塊空間,反而會影響效率
定義為類
列舉型別
main 方法**
author *a1 = [author new];
[a1 setname:@「***斯基」];
[a1 setage:68];
[a1 setgender:gendermale];
book *b1 = [book new];
[b1 setname:@「鋼鐵是怎麼練成的」];
[b1 setpublishdate:(date)];
[b1 setpublishername:@「人民郵電出版社」];
[b1 setauthor:a1];
student *s1 = [student new];
[s1 setname:@「小東」];
[s1 setage:18];
[s1 setgender:genderfemale];
[s1 setbook:b1];
typedef enum
gender;
person : nsobject
-(void)setname:(nsstring *)name;
-(nsstring *)name;
-(void)setgender:(gender)gender;
-(gender)gender;
-(void)setage:(int)age;
-(int)age;
-(void)setname:(nsstring *)name
-(nsstring *)name
-(void)setgender:(gender)gender
-(gender)gender
-(void)setage:(int)age
-(int)age
student : person
-(void)setbook:(book *)book;
-(book *)book;
-(void)setstunumber:(nsstring *)stunumber;
-(nsstring *)stunumber;
-(void)setstunumber:(nsstring *)stunumber
-(nsstring *)stunumber
-(void)setbook:(book *)book
-(book *)book
typedef struct date;
book : nsobject
-(void)setpublishdate:(date)publishdate;
-(date)publishdate;
-(void)setname:(nsstring *)name;
-(nsstring *)name;
-(void)setpublishername:(nsstring *)publishername;
-(nsstring *)publishername;
-(void)setauthor:(author *)author;
-(author *)author;
-(void)setpublishdate:(date)publishdate
-(date)publishdate
-(void)setname:(nsstring *)name
-(nsstring *)name
-(void)setpublishername:(nsstring *)publishername
-(nsstring *)publishername
-(void)setauthor:(author *)author
-(author *)author
author : person
-(void) writebook;
-(void) writebook
類和結構體區別
c 中類和結構體區別 類是有行動 方法和成員的有機體,而結構體是活生生的有機體。1 值型別和引用型別 類是引用型別,繼承system.object,資料儲存在堆上,結構體值型別,繼承system.valuetype,資料儲存在堆疊上 堆疊上的物件有編譯器自動建立和銷毀,所以堆疊的執行效率要高些,但是...
結構體和類的區別
結構體和類的區別 結構體struct 的預設成員訪問許可權是public 類class的預設成員訪問許可權是private ps 以前總以為struct不能定義成員函式 包括建構函式 析構函式 其實是錯誤的。在c 裡面,class和struct除了上面的不同,其他完全一致。可能有人會想,那為什麼c ...
結構體和類的區別
1.c的結構體和c 結構體的區別 1.1 c的結構體內不允許有函式存在,c 允許有內部成員函式,且允許該函式是虛函式。所以c的結構體是沒有建構函式 析構函式 和this指標的。1.2 c的結構體對內部成員變數的訪問許可權只能是public,而c 允許public,protected,private三...