首页 > 其他 > 详细

Data Types

时间:2014-10-22 21:55:00      阅读:205      评论:0      收藏:0      [点我收藏+]

// DATA TYPES
//
// Built-In Types(Simple)
// -Numeric
// -Character
// -Boolean
//
// Custom Types(Complex)
// -Structures
// -Classes
// -Interfaces
// -Enumerations
//
// Common Type System
// -Each type is either a value type or a reference type
// -Supports inheritance
// -Value types derive from System.ValueType
// -All types ferive from System.Object
//
// Value Types
// -Built-in types
// -Structures
// -Enumerations
// -Stored on the stack
// -Passed by value(a copy)
//
// Reference Type
// -Classes
// -Interfaces
// -Stored on the heap
// -Passed by reference(memory address)
// -Changing modifies original value

Data Types

原文:http://www.cnblogs.com/yoghourt/p/4044187.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!