首页 > 学院 > 开发设计 > 正文

C#手动回收内存的简单方法

2019-11-14 11:13:11
字体:
来源:转载
供稿:网友

原文链接:

http://www.VEVb.com/GhostZCH/archive/2012/09/18/2691038.html

C#有自动回收内存的机制,但是有时自动回收有一定滞后,需要在变量使用后迅速回收,节约内存,这里介绍一个最简单的方法。

1.先对对象赋值 null;

2.System.GC.Collect();

代码样例:

class PRogram    {        static void Main(string[] args)        {            long lenth = 1024 * 1024 * 128;            GetCost("程序启动");            double[] data = new double[lenth];            for (int i = 0; i < lenth; i++)            {                data[i] = double.MaxValue;            }            GetCost("数据制造完成");            data = null;            GetCost("data = null");            System.GC.Collect();            GetCost("System.GC.Collect()");            Console.ReadKey();        }        /// <summary>        /// 显示内存使用的状态        /// </summary>        /// <param name="state"></param>        static void GetCost(string state)        {            Console.Write("当前状态:" + state + ";  占用内存:");            using (var p1 = new PerformanceCounter("Process", "Working Set - Private", "GCtest.vshost"))            {                Console.WriteLine( (p1.NextValue()/1024/1024).ToString("0.0")+"MB");            }        }    }运行结果:

不手动回收时,系统会等到程序执行结束时回收。在使用data=null后表示该数据已经不再使用,System.GC.Collect();通知系统立即进行一次回收操作,根据C#的内存管理原则,不再使用的变量被回收。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表