วัตถุ Excel ใดที่ใช้ zero-based และวัตถุใดที่ใช้หนึ่ง?


20

การใช้ VBA เพื่อเข้าถึงแผ่นงานแรกในแผ่นงานคือแผ่นงาน (1) รายการแรกในกล่องรายการคือ myListBox.List (0) ฉันได้ยินมาว่าคอลเล็คชั่นเป็นแบบ 1 แต่ฉันไม่รู้ว่ามันคืออะไร VBA arrays เป็นแบบ 0 ฟังก์ชันสตริงของ Excel เช่น MID ใช้แบบ 1 มีหลักการทั่วไปเกี่ยวกับสิ่งที่อยู่บนพื้นฐานของ 0 หรือ 1 หรือคุณสามารถให้รายชื่อของแต่ละคน?


เซลล์ (1,1) .characters (ดัชนีความยาว) ขึ้นอยู่กับ 1 แต่ไม่เรียงลำดับของการตัดขอบเขตบางอย่างเพื่อให้เซลล์ (1,1) .characters (0, ยาว) = เซลล์ (1,1) .characters (1, ความยาว) (excel 2013)
seanv507

คำตอบ:


24

มีโครงสร้างการจัดกลุ่มหลัก 3 ประเภทที่มีอยู่ใน VBA พร้อมความแตกต่างระหว่างดัชนี

  • คอลเลกชัน - ดัชนีที่ใช้ 1

    • ข้อยกเว้นที่ใช้ 0: คอลเลกชัน UserForm เช่นแท็บหน้าการควบคุม (กล่องรายการกล่องข้อความ)
    • คอลเลกชันเป็นวัตถุ Excel ดั้งเดิมที่มีกลุ่ม (หรือรายการ) ของวัตถุที่เกี่ยวข้องกับเหตุผล
    • โดยปกติจะใช้เพื่อเก็บวัตถุที่ซับซ้อน แต่สามารถเก็บประเภทพื้นฐานได้เช่นกัน
    • คอลเลกชันของ Excel:

      • สมุดงานแผ่นช่วงรูปร่าง
      • ชีต (1) เป็นไฟล์แรกในไฟล์เซลล์ (1, 1) เป็นเซลล์ในแถวแรกและคอลัมน์แรก
    • ข้อได้เปรียบหลักของคอลเลกชันคือความสะดวกในการเข้าถึงองค์ประกอบตามชื่อ

      • For-Each loop นั้นมีประสิทธิภาพมาก (เทียบกับ For-each processing Array)
      • การเข้าถึงแต่ละรายการโดยใช้ดัชนีนั้นเร็วกว่าการเข้าถึงโดยใช้ชื่อ

  • อาร์เรย์ - อิงตามค่าเริ่มต้น 0 แต่ดัชนีแรกสามารถเปลี่ยนเป็นตัวเลขใดก็ได้ (ตัวอย่างการร้อง)

    • อาร์เรย์คือตัวแปรที่มีชุดของตัวแปรที่เกี่ยวข้อง
    • ปกติใช้สำหรับชนิดข้อมูลดั้งเดิมเช่น Boolean, Integer, Long, String, Double และอื่น ๆ
    • เมื่อมีการกำหนดแล้วจะมีรายการประเภทเดียวเท่านั้น: Dim x() As Long

      • เมื่อต้องการเก็บวัตถุที่ซับซ้อนมากขึ้นอาร์เรย์สามารถกำหนดเป็น Dim x() As Variant
      • ตัวแปรสามารถเป็นวัตถุประเภทใดก็ได้รวมถึงสมุดงานแผ่นช่วงเรย์

        • Dim x As Variant: x = Array(1) '1 Variant variable containing 1 array
        • Dim y(2) As Variant '1 Variant array containing 3 arrays
        • y(0) = Array(1): y(1) = Array(2): y(2) = Array(3)
    • ข้อได้เปรียบหลักของอาร์เรย์คือประสิทธิภาพเมื่อเข้าถึงรายการตามดัชนี

      • For index=0 To 10ลูปเร็วกว่าFor-Eachลูป

  • พจนานุกรม - ไม่ได้จัดทำดัชนี แต่สามารถจำลองดัชนีด้วยคีย์ได้

    • เนทิฟกับสคริปต์ VB ไม่ใช่ VBA (ต้องใช้ไลบรารีภายนอก)
    • สามารถเก็บวัตถุประเภทใดก็ได้รวมถึงอาร์เรย์คอลเลกชันหรือพจนานุกรมอื่น ๆ

กล่องรายการเป็นวัตถุที่ซับซ้อนและสามารถเข้าถึงได้ผ่านคอลเลกชันของการควบคุมที่ใช้ 0

คุณสมบัติ. List () ของ ListBox เป็นอาร์เรย์ที่ใช้ 0

บันทึกอื่น ๆ

  • ดัชนีที่ใช้ 0 เป็นมาตรฐานสำหรับภาษาอื่น ๆ

  • VBA นำเสนอแนวคิดพื้นฐานที่ใช้เพื่อให้ง่ายขึ้นสำหรับผู้ใช้ใหม่:

    • Sheet1 ถึง Sheet3 ที่มีการรวบรวมจำนวน 3 ใช้งานง่ายกว่า
    • Sheet0 ถึง Sheet2 ที่มีการรวบรวมจำนวน 3

ตัวอย่างที่ใช้งานจริงของความแตกต่างระหว่างดัชนี:

Public Sub vbaCollections()
    Dim c As New Collection     '1-based index

    c.Add Item:="a", Key:="1"   'index 1; Key must a String
    c.Add Item:="b", Key:="2"   'index 2
    c.Add Item:="c", Key:="3"   'index 3

    Debug.Print c.Count         '3;   Items in index sequence: a,b,c, Keys: "1","2","3"
    Debug.Print c.Item(1)       'a;   not available for Dictionaries
    'Debug.Print c.Key("1")     'invalid, so is: c.Key(1)

    c.Remove Index:=2
    Debug.Print c.Count         '2;   items in index sequence: a,c, Keys: "1","3"
    'c.Remove Item:="c"         'invalid, so is: c.Remove Key:="3"

    'c.Add Item:="c", Key:="3", Before:=1   'Key must be unique - Error
    c.Add Item:="c", Key:="5", Before:=1    'allows duplicate Item
    Debug.Print c.Count         '3;   items in index sequence: c,a,c, Keys: "5","1","3"
End Sub

Public Sub vbaArrays()
    Dim a() As Long, b(3) As Long   'Arrays default to "Option Base {0 | 1}"
    Dim c(0 To 0)                   'if "Option Base" not defined, it defaults to 0
    Dim ar(1) As Worksheet: Set ar(0) = Worksheets(1)   'array with 1 Worksheets object

    ReDim a(3)          'creates an array of 4 elements; indexes 0,1,2,3
        Debug.Print "LB: " & LBound(a) & ", UB: " & UBound(a)   'LB: 0, UB: 3
        Debug.Print UBound(a) - LBound(a)                       '3, array b() is the same

    'even whith "Option Base 1", the following still default to 0
    Dim v As Variant:  v = Split("A B")         'array with 2 items: v(0) = "A", v(1) = "B"
    'UserForm1.ListBox1.List = Array("Test")    'array with 1 item: .List(0,0) = "Test"

    ReDim a(0 To 3)     'creates an array of 4 elements; indexes 0,1,2,3
    a(0) = 1:   a(1) = 2:   a(2) = 3    'a(3) defaults to 0

        Debug.Print "LB: " & LBound(a) & ", UB: " & UBound(a)   'LB: 0, UB: 3
        Debug.Print UBound(a) - LBound(a)                       '3; offset index by -1

    ReDim a(1 To 3)     'creates an array of 3 elements; indexes 1,2,3
    a(1) = 1:   a(2) = 2:   a(3) = 3

        Debug.Print "LB: " & LBound(a) & ", UB: " & UBound(a)   'LB: 1, UB: 3
        Debug.Print UBound(a) - LBound(a)                       '2; offset count by +1

    ReDim a(5 To 7)     'creates an array of 3 elements; indexes 5,6,7
    a(5) = 1:   a(6) = 2:   a(7) = 3

        Debug.Print "LB: " & LBound(a) & ", UB: " & UBound(a)   'LB: 5, UB: 7
        Debug.Print UBound(a) - LBound(a)                       '2; offset count by +1

    ReDim a(-3 To -1)   'creates an array of 3 elements; indexes -3,-2,-1
    a(-3) = 1:  a(-2) = 2:  a(-1) = 3

        Debug.Print "LB: " & LBound(a) & ", UB: " & UBound(a)   'LB: -3, UB: -1
        Debug.Print UBound(a) - LBound(a)                       '2; offset count by +1
End Sub

Public Sub vbsDictionaries()
    Dim d As Object         'not indexed (similar to linked lists)
    Set d = CreateObject("Scripting.Dictionary")    'native to VB Script, not VBA

    d.Add Key:="a", Item:=1 'index is based on Key (a, b, c)
    d.Add Key:="b", Item:=2
    d.Add Key:="c", Item:=3
    Debug.Print d.Count     '3; Keys: a,b,c, Items: 1,2,3

    Debug.Print d(1)        'output is empty ("") - adds new element: Key:="1", Item:=""
    Debug.Print d.Count     '4; Keys: a,b,c,1, Items: 1,2,3,Empty
    Debug.Print d("a")      '1
    Debug.Print d(1)        'output is Empty ("") from element with Key:="1"

    'd.Add Key:="b", Item:=2        'attempt to add existing element: Key:="b" - Error

    'd.Keys  - 0-based array (not available for Collections)
    'd.Items - 0-based array (not available for Collections)

    d.Remove d.Keys()(1)            'remove element Item:=2 (Key:="b")
        Debug.Print d.Count         '3; Keys: a,c,1, Items: 1,3,""
    d.Remove d.Items()(0)           'remove Items element 0 (Key:="1", Item:="")
        Debug.Print d.Count         '2; Keys: a,c, Items: 1,3
    d.Remove "c"                    'remove element Key:="c" (Item:=3)
        Debug.Print d.Count         '1; Keys: a, Items: 1

    d.Add Key:="c", Item:=3
        Debug.Print d.Count         '2; Keys: a,c, Items: 1,3

    'd.Remove d.Items()(0)          'invalid
    Debug.Print d.Items()(d.Count - 1)  '3
    d.Remove d.Keys()(d.Count - 1)  'remove last element; access last Key by Key
        Debug.Print d.Count         '1; Keys: a, Items: 1

    Debug.Print d.Exists("a")       'True (not available for Collections)
    Debug.Print d.Exists(2)         'False
End Sub

อ่านเพิ่มเติม:

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.