Does calling Clear disposes the items also?

前端 未结 4 1593
予麋鹿
予麋鹿 2021-01-07 19:54

Many times there is a clear method, that removes all the items from the collections, are these items disposed also.

Like,

toolStripMenuItem.DropDown         


        
相关标签:
4条回答
  • 2021-01-07 20:29

    Q: Does?

    A: No - Clear does not dispose the items (they could be used in other parts of your application).

    So, if your ToolStripItems are standard .NET ones, should Clear be sufficient? After some reflection I'd say "probably not".

    Yeah, this is true that if you will have any references to the ToolStripItem in other part of your application, the .NET GarbageCollector will destroy(use the class destructor) it automatically. But, it will not call the Dispose(true) method, that is, however, required for the form's IDisposable components.

    Read a propos this and this.

    Actually, I believe that you will, however, need to explicitly Dispose your Items, like the ToolStrip's Dispose method does (replace this by yourToolStrip):

    if (!this.Items.IsReadOnly)
    {
        for (int i = this.Items.Count - 1; i >= 0; i--)
        {
            this.Items[i].Dispose();
        }
        this.Items.Clear();
    }
    

    EDIT

    I also created the following thread to clarify this question more generally.

    0 讨论(0)
  • 2021-01-07 20:40

    Calling Clear doesn't dispose the items, but it removes the reference from the collection to the items. If that was the only reference to the items they will be garbage collected automatically at some point (which you can't predict, but you may control using the GC class).

    0 讨论(0)
  • 2021-01-07 20:41

    You should rely on Dispose() call when you're dealing with unmanaged memory, shared resources or large memory areas. Doesn't seems this case.

    0 讨论(0)
  • 2021-01-07 20:42

    I don't think so,more, it can cause many logical problems because you may have reference to that object in the collection for later use. If you don't have references to that objects Garbage Collector will dispose that objects later

    0 讨论(0)
提交回复
热议问题