📅  最后修改于: 2023-12-03 15:29:29.305000             🧑  作者: Mango
Dictionary.RemoveAll
方法用于从字典中删除所有元素。这个方法不需要任何参数。
Dictionary.RemoveAll
无返回值。
<%
Dim dict
Set dict = Server.CreateObject("Scripting.Dictionary")
dict.Add "key1", "value1"
dict.Add "key2", "value2"
dict.RemoveAll '删除所有元素
Response.Write dict.Count '输出0
%>
Dictionary.RemoveAll
方法之前,要确保字典对象已被创建;Dictionary.RemoveAll
方法删除了所有元素,字典对象中就不包含任何元素,此时如果向字典中添加元素,则又会变成非空字典;以上就是关于 Dictionary.RemoveAll
方法的介绍。