为每一行添加注释:
Sub unique()
'Declare a collection object called `arr`. Despite the name, it's not an array. Also declare the variable `a` as type variant (default)
Dim arr As New Collection, a
'Declare an array of type variant, being used here in this example and it will be loaded with fruit names.
Dim aFirstArray() As Variant
'Declare a variable called `i` as a long integer type
Dim i As Long
'Here's are our example single-dimensional array for which we want to find unique values.
aFirstArray() = Array("Banana", "Apple", "Orange", "Tomato", "Apple", _
"Lemon", "Lime", "Lime", "Apple")
'If we encounter an error adding `aFirstArray` array elements/items into our `arr` collection object then ignore them
On Error Resume Next
'Loop through each element(fruit name) in the array `aFirstArray`
For Each a In aFirstArray
'Add the item to the collection. The key and the value are both being set to the fruitname which is now in variable `a`
'If the key (fruit name) already exists, that `On Error Resume Next` will ignore the error that pops.
arr.Add a, a
Next
'Now we have a collection object `arr` that contains unique values from the array held in both the key and value of each item.
'Iterate from 1 to the however many unique items are in the collection object `arr`
For i = 1 To arr.Count
'Print the value (fruitname) out to the workbook
Cells(i, 1) = arr(i)
Next
End Sub
在这里使用对象的原因collection是它的工作方式很像数组,但是我们可以设置一个key. 键必须是唯一的,所以当我们尝试添加相同的键时,它已经被设置了value错误。您最终得到的是一个集合对象,该对象具有数组中的唯一键(在本例中为匹配值)。
您还将使用 Dictionary 对象看到此子例程/函数的类似版本。我更喜欢那些而不是集合,因为字典对象有一个方法exists,所以不是On Error Resume Next它更像是一个拐杖,你可以key在添加之前检查字典中是否已经存在If Not myDictionary.Exists(keyvalue) Then myDictionary.Add keyValue, val。