扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:愚翁 来源:天极Yesky软件频道 2007年11月11日
关键字: 《Effective C#》 值类型 引用类型
值类型 | 引用类型 | |
内存分配地点 | 分配在栈中 | 分配在堆中 |
效率 | 效率高,不需要地址转换 | 效率低,需要进行地址转换 |
内存回收 | 使用完后,立即回收 | 使用完后,不是立即回收,等待GC回收 |
赋值操作 | 进行复制,创建一个同值新对象 | 只是对原有对象的引用 |
函数参数与返回值 | 是对象的复制 | 是原有对象的引用,并不产生新的对象 |
类型扩展 | 不易扩展 | 容易扩展,方便与类型扩展 |
public void Increment( int i ) { i++; } |
public void Increment( ref int i ) { i++; } |
public void AddValue( MyType typValue ) { typValue.Count = typValue.Count + 15; } |
public class MyType:ICloneable { private int nCount = 0; public int Count { set{ nCount = value;} get{ return nCount;} } public MyType() {} public MyType( int Value) { nCount = Value; } #region ICloneable Members public object Clone() { // TODO: Add MyType.Clone implementation return new MyType( nCount ); } #endregion } |
<!--[if !supportLists]-->1. <!--[endif]-->这个类型是否主要为了数据存储; <!--[if !supportLists]-->2. <!--[endif]-->是否只通过属性来访问对象的数据成员; <!--[if !supportLists]-->3. <!--[endif]-->这个类型是否不会有子类型; <!--[if !supportLists]-->4. <!--[endif]-->在程序处理的时候不会把这个类型对象通过多态来处理。 |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者