Use ArrayList to store objects : ArrayList « Collections « VB.Net Tutorial

VB.Net Tutorial
1. Language Basics
2. Data Type
3. Operator
4. Statements
5. Date Time
6. Class Module
7. Development
8. Collections
9. Generics
10. Attributes
11. Event
12. Stream File
13. GUI
14. GUI Applications
15. 2D Graphics
16. I18N Internationlization
17. Reflection
18. Regular Expressions
19. Security
20. Socket Network
21. Thread
22. Windows
23. XML
24. Database ADO.net
25. Design Patterns
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial » Collections » ArrayList 
8. 11. 3. Use ArrayList to store objects
 
 

 Option Strict On
 Imports System
 Imports System.Collections
 
 Public Class Employee
     Private myEmpID As Integer

     Public Sub New(ByVal empID As Integer)
         Me.myEmpID = empID
     End Sub 'New

     Public Overrides Function ToString( ) As String
         Return myEmpID.ToString( )
     End Function 'ToString

     Public Property EmpID( ) As Integer
         Get
             Return myEmpID
         End Get
         Set(ByVal Value As Integer)
             myEmpID = Value
         End Set
     End Property
 End Class 'Employee

 Class Tester
     Shared Sub Main( )
         Dim empArray As New ArrayList( )
         Dim intArray As New ArrayList( )

         Dim As Integer
         For i = To 4
             empArray.Add(New Employee(i + 100))
             intArray.Add((i * 5))
         Next i
         For Each i In intArray
             Console.Write("{0} ", i.ToString( ))
         Next i

         Console.WriteLine(ControlChars.Lf)
         Dim As Employee
         For Each e In empArray
             Console.Write("{0} ", e.ToString( ))
         Next e

         Console.WriteLine(ControlChars.Lf)
         Console.WriteLine("empArray.Capacity: {0}", empArray.Capacity)
     End Sub
 End Class 

        
  
  




0 5 10 15 20

100 101 102 103 104

empArray.Capacity: 8

 
8. 11. ArrayList
8. 11. 1. Add user defined object to ArrayList
8. 11. 2. Add different data types to ArrayList
8. 11. 3. Use ArrayList to store objects
8. 11. 4. Use For Each to loop through the ArrayList
8. 11. 5. Convert ArrayList to array
8. 11. 6. Use DirectCast to convert ArrayList to array
8. 11. 7. Use ArrayList.Contains to check if a object already exists
8. 11. 8. Remove element in an ArrayList by index
w_w__w___.__j_a__va___2s.__c_o__m | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.