當前位置: 首頁>>代碼示例>>VB.NET>>正文


VB.NET Array.GetLowerBound方法代碼示例

本文整理匯總了VB.NET中System.Array.GetLowerBound方法的典型用法代碼示例。如果您正苦於以下問題:VB.NET Array.GetLowerBound方法的具體用法?VB.NET Array.GetLowerBound怎麽用?VB.NET Array.GetLowerBound使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Array的用法示例。


在下文中一共展示了Array.GetLowerBound方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。

示例1: Main

Public Module Example    
    Public Sub Main()
        ' Create a one-dimensional integer array.
        Dim integers() As Integer = { 2, 4, 6, 8, 10, 12, 14, 16, 18, 20 }
        ' Get the upper and lower bound of the array.
        Dim upper As Integer = integers.GetUpperBound(0)
        Dim lower As Integer = integers.GetLowerBound(0)
        Console.WriteLine($"Elements from index {lower} to {upper}:")
        ' Iterate the array.
        For ctr As Integer = lower To upper
           Console.Write("{0}{1}{2}", If(ctr = lower, "   ", ""), 
                                     integers(ctr), 
                                     If(ctr < upper, ", ", vbCrLf))
        Next
        Console.WriteLine()
        
        ' Create a two-dimensional integer array.
        Dim integers2d(,) As Integer = {{2, 4}, {3, 9}, {4, 16}, {5, 25}, 
                                       {6, 36}, {7, 49}, {8, 64}, {9, 81} } 
        ' Get the number of dimensions.                               
        Dim rank As Integer = integers2d.Rank  
        Console.WriteLine($"Number of dimensions: {rank}")      
        For ctr As Integer = 0 To rank - 1
           Console.WriteLine($"   Dimension {ctr}: " +
                             $"from {integers2d.GetLowerBound(ctr)} to {integers2d.GetUpperBound(ctr)}")
        Next
        ' Iterate the 2-dimensional array and display its values.
        Console.WriteLine("   Values of array elements:")
        For outer = integers2d.GetLowerBound(0) To integers2d.GetUpperBound(0)
           For inner = integers2d.GetLowerBound(1) To integers2d.GetUpperBound(1)
              Console.WriteLine($"      {ChrW(&h07b)}{outer}, {inner}{ChrW(&h007d)} = " +
                                $"{integers2d.GetValue(outer, inner)}")
           Next
        Next
    End Sub
End Module
開發者ID:VB.NET開發者,項目名稱:System,代碼行數:36,代碼來源:Array.GetLowerBound

輸出:

Elements from index 0 to 9:
2, 4, 6, 8, 10, 12, 14, 16, 18, 20

Number of dimensions: 2
Dimension 0: from 0 to 7
Dimension 1: from 0 to 1
Values of array elements:
{0, 0} = 2
{0, 1} = 4
{1, 0} = 3
{1, 1} = 9
{2, 0} = 4
{2, 1} = 16
{3, 0} = 5
{3, 1} = 25
{4, 0} = 6
{4, 1} = 36
{5, 0} = 7
{5, 1} = 49
{6, 0} = 8
{6, 1} = 64
{7, 0} = 9
{7, 1} = 81

示例2: Test

public class Test
   public Shared Sub Main
        Dim aryNames(9) As String
        Dim intCounter As Integer

        'Show the array boundaries.
        Console.WriteLine("LOWER BOUND: " & aryNames.GetLowerBound(0))
        Console.WriteLine("UPPER BOUND: " & aryNames.GetUpperBound(0))
        Console.WriteLine("LENGTH: " & aryNames.Length)

        'Populate the array.
        For intCounter = 0 To aryNames.GetUpperBound(0)
            aryNames(intCounter) = "Element position = " & intCounter
        Next intCounter

        'Show the elements of the array.
        For intCounter = 0 To aryNames.GetUpperBound(0)
            Console.WriteLine("Element position = " & intCounter)
        Next intCounter


   End Sub


End class
開發者ID:VB程序員,項目名稱:System,代碼行數:25,代碼來源:Array.GetLowerBound


注:本文中的System.Array.GetLowerBound方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。