大量界面刷新时手动GCCollect也是有必要的

Posted ZGJ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了大量界面刷新时手动GCCollect也是有必要的相关的知识,希望对你有一定的参考价值。

在winform窗体上拖一个flowLayoutPane,一个Button,一个用户控件UcControl,用户控件上放几十个子控件

private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                DateTime startTime = DateTime.Now;

                flowLayoutPanel1.Controls.Clear();
                for (int i = 0; i < Controlcount; i++)
                {
                    UcControl v = new UcControl();
                    v.Width = 275;
                    v.Height = 120;
                    flowLayoutPanel1.Controls.Add(v);

                }
                slExecutedTime.Text = (DateTime.Now - startTime).ToString();
            }
            catch (Exception exception)
            {
                Console.WriteLine(exception);
                throw;
            }
        }

使劲点按钮,过一会弹出创建句柄出错。解决办法,加上红色部分就好了,再使劲点也不会出问题。

private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                DateTime startTime = DateTime.Now;
                for (int i = 0; i < flowLayoutPanel1.Controls.Count; i++)
                {
                    DeleteChilds(flowLayoutPanel1.Controls[i]);
                    
                }
         GC.Collect(); 
                flowLayoutPanel1.Controls.Clear();
                for (int i = 0; i < Controlcount; i++)
                {
                    UcControl v = new UcControl();
                    v.Width = 275;
                    v.Height = 120;
                    flowLayoutPanel1.Controls.Add(v);

                }
                slExecutedTime.Text = (DateTime.Now - startTime).ToString();
            }
            catch (Exception exception)
            {
                Console.WriteLine(exception);
                throw;
            }
        }
private void DeleteChilds(Control control)
        {
            foreach (Control v in control.Controls)
            {
                if (v.Controls.Count>0)
                {
                    DeleteChilds(v);
                }
                v.Dispose();
            }
        }

 

以上是关于大量界面刷新时手动GCCollect也是有必要的的主要内容,如果未能解决你的问题,请参考以下文章

PullToRefreshListView手动刷新问题

Linux之SWAP分区的信息查询与手动刷新

新建文件夹后没有显示,要刷新才能看见

Vue学习笔记

Redis cluster 有没有必要刷新 拓扑?

在非主线程里面使用NSTimer创建和取消定时任务