close
1.一樣的data member,宣告成class會比struct大一點點,因為是reference type需要多記位址
2.class 因屬reference type會比struct多一點overhead (for heap allocation, object access, and garbage collection)
3.如果data member少於16byte,大量執行迴圈時struct較快。大於16byte則class比較快
4.struct 是 value type, class是reference type
5.http://msdn.microsoft.com/en-us/library/2hkbth2a%28vs.71%29.aspx
全站熱搜
留言列表