InternetUnicodeHTMLCSSScalable Vector Graphics (SVG)Extensible Markup Language (xml) ASP.Net TOCASP.NetMiscellaneous Feature ASP.NET Scripting Visual Basic .NET TOCVB .NET Language Referencena VB.Net Keywords Draft for Information Only
Content
VB.NET Type of Generic Data
VB.NET Type of Generic DataGeneric Types in Visual BasicA generic type is a single programming element that adapts to perform the same functionality for a variety of data types. When you define a generic class or procedure, you do not have to define a separate version for each data type for which you might want to perform that functionality. An analogy is a screwdriver set with removable heads. You inspect the screw you need to turn and select the correct head for that screw (slotted, crossed, starred). Once you insert the correct head in the screwdriver handle, you perform the exact same function with the screwdriver, namely turning the screw.
When you define a generic type, you parameterize it with one or more data types. This allows the using code to tailor the data types to its requirements. Your code can declare several different programming elements from the generic element, each one acting on a different set of data types. But the declared elements all perform the identical logic, no matter what data types they are using. For example, you might want to create and use a queue class that operates on a specific data type such as String. You can declare such a class from System.Collections.Generic.Queue<T>, as the following example shows. VBPublic stringQ As New System.Collections.Generic.Queue(Of String) You can now use stringQ to work exclusively with String values. Because stringQ is specific for String instead of being generalized for Object values, you do not have late binding or type conversion. This saves execution time and reduces run-time errors. For more information on using a generic type, see How to: Use a Generic Class. Example of a Generic ClassThe following example shows a skeleton definition of a generic class. VBPublic Class classHolder(Of t) Public Sub processNewItem(ByVal newItem As t) Dim tempItem As t ' Insert code that processes an item of data type t. End Sub End Class In the preceding skeleton, t is a type parameter, that is, a placeholder for a data type that you supply when you declare the class. Elsewhere in your code, you can declare various versions of classHolder by supplying various data types for t. The following example shows two such declarations. VBPublic integerClass As New classHolder(Of Integer) Friend stringClass As New classHolder(Of String) The preceding statements declare constructed classes, in which a specific type replaces the type parameter. This replacement is propagated throughout the code within the constructed class. The following example shows what the processNewItem procedure looks like in integerClass. VBPublic Sub processNewItem(ByVal newItem As Integer) Dim tempItem As Integer ' Inserted code now processes an Integer item. End Sub For a more complete example, see How to: Define a Class That Can Provide Identical Functionality on Different Data Types. Eligible Programming ElementsYou can define and use generic classes, structures, interfaces, procedures, and delegates. Note that the .NET Framework defines several generic classes, structures, and interfaces that represent commonly used generic elements. The System.Collections.Generic namespace provides dictionaries, lists, queues, and stacks. Before defining your own generic element, see if it is already available in System.Collections.Generic. Procedures are not types, but you can define and use generic procedures. See Generic Procedures in Visual Basic. Advantages of Generic TypesA generic type serves as a basis for declaring several different programming elements, each of which operates on a specific data type. The alternatives to a generic type are:
A generic type has the following advantages over these alternatives:
ConstraintsAlthough the code in a generic type definition should be as type-independent as possible, you might need to require a certain capability of any data type supplied to your generic type. For example, if you want to compare two items for the purpose of sorting or collating, their data type must implement the IComparable interface. You can enforce this requirement by adding a constraint to the type parameter. Example of a ConstraintThe following example shows a skeleton definition of a class with a constraint that requires the type argument to implement IComparable. VBPublic Class itemManager(Of t As IComparable) ' Insert code that defines class members. End Class If subsequent code attempts to construct a class from itemManager supplying a type that does not implement IComparable, the compiler signals an error. Types of ConstraintsYour constraint can specify the following requirements in any combination:
If you need to impose more than one requirement, you use a comma-separated constraint list inside braces ({ }). To require an accessible constructor, you include the New Operator keyword in the list. To require a reference type, you include the Class keyword; to require a value type, you include the Structure keyword. For more information on constraints, see Type List. Example of Multiple ConstraintsThe following example shows a skeleton definition of a generic class with a constraint list on the type parameter. In the code that creates an instance of this class, the type argument must implement both the IComparable and IDisposable interfaces, be a reference type, and expose an accessible parameterless constructor. VBPublic Class thisClass(Of t As {IComparable, IDisposable, Class, New}) ' Insert code that defines class members. End Class Important TermsGeneric types introduce and use the following terms:
See also
How to: Define a Class That Can Provide Identical Functionality on Different Data TypesYou can define a class from which you can create objects that provide identical functionality on different data types. To do this, you specify one or more type parameters in the definition. The class can then serve as a template for objects that use various data types. A class defined in this way is called a generic class. The advantage of defining a generic class is that you define it just once, and your code can use it to create many objects that use a wide variety of data types. This results in better performance than defining the class with the Object type. In addition to classes, you can also define and use generic structures, interfaces, procedures, and delegates. To define a class with a type parameter
Public Class simpleList(Of itemType) Private items() As itemType Private top As Integer Private nextp As Integer Public Sub New() Me.New(9) End Sub Public Sub New(ByVal t As Integer) MyBase.New() items = New itemType(t) {} top = t nextp = 0 End Sub Public Sub add(ByVal i As itemType) insert(i, nextp) End Sub Public Sub insert(ByVal i As itemType, ByVal p As Integer) If p > nextp OrElse p < 0 Then Throw New System.ArgumentOutOfRangeException("p", " less than 0 or beyond next available list position") ElseIf nextp > top Then Throw New System.ArgumentException("No room to insert at ", "p") ElseIf p < nextp Then For j As Integer = nextp To p + 1 Step -1 items(j) = items(j - 1) Next j End If items(p) = i nextp += 1 End Sub Public Sub remove(ByVal p As Integer) If p >= nextp OrElse p < 0 Then Throw New System.ArgumentOutOfRangeException("p", " less than 0 or beyond last list item") ElseIf nextp = 0 Then Throw New System.ArgumentException("List empty; cannot remove ", "p") ElseIf p < nextp - 1 Then For j As Integer = p To nextp - 2 items(j) = items(j + 1) Next j End If nextp -= 1 End Sub Public ReadOnly Property listLength() As Integer Get Return nextp End Get End Property Public ReadOnly Property listItem(ByVal p As Integer) As itemType Get If p >= nextp OrElse p < 0 Then Throw New System.ArgumentOutOfRangeException("p", " less than 0 or beyond last list item") End If Return items(p) End Get End Property End Class You can declare a class from simpleList to hold a list of Integer values, another class to hold a list of String values, and another to hold Date values. Except for the data type of the list members, objects created from all these classes behave identically. The type argument that the using code supplies to itemType can be an intrinsic type such as Boolean or Double, a structure, an enumeration, or any type of class, including one that your application defines. You can test the class simpleList with the following code. VB
See also
How to: Use a Generic ClassA class that takes type parameters is called a generic class. If you are using a generic class, you can generate a constructed class from it by supplying a type argument for each of these parameters. You can then declare a variable of the constructed class type, and you can create an instance of the constructed class and assign it to that variable. In addition to classes, you can also define and use generic structures, interfaces, procedures, and delegates. The following procedure takes a generic class defined in the .NET Framework and creates an instance from it. To use a class that takes a type parameter
See also
Generic Procedures in Visual BasicA generic procedure, also called a generic method, is a procedure defined with at least one type parameter. This allows the calling code to tailor the data types to its requirements each time it calls the procedure. A procedure is not generic simply by virtue of being defined inside a generic class or a generic structure. To be generic, the procedure must take at least one type parameter, in addition to any normal parameters it might take. A generic class or structure can contain nongeneric procedures, and a nongeneric class, structure, or module can contain generic procedures. A generic procedure can use its type parameters in its normal parameter list, in its return type if it has one, and in its procedure code. Type InferenceYou can call a generic procedure without supplying any type arguments at all. If you call it this way, the compiler attempts to determine the appropriate data types to pass to the procedure's type arguments. This is called type inference. The following code shows a call in which the compiler infers that it should pass type String to the type parameter t. VBPublic Sub testSub(Of t)(ByVal arg As t) End Sub Public Sub callTestSub() testSub("Use this string") End Sub If the compiler cannot infer the type arguments from the context of your call, it reports an error. One possible cause of such an error is an array rank mismatch. For example, suppose you define a normal parameter as an array of a type parameter. If you call the generic procedure supplying an array of a different rank (number of dimensions), the mismatch causes type inference to fail. The following code shows a call in which a two-dimensional array is passed to a procedure that expects a one-dimensional array. VBPublic Sub demoSub(Of t)(ByVal arg() As t) End Sub Public Sub callDemoSub() Dim twoDimensions(,) As Integer demoSub(twoDimensions) End Sub You can invoke type inference only by omitting all the type arguments. If you supply one type argument, you must supply them all. Type inference is supported only for generic procedures. You cannot invoke type inference on generic classes, structures, interfaces, or delegates. ExampleDescriptionThe following example defines a generic Function procedure to find a particular element in an array. It defines one type parameter and uses it to construct the two parameters in the parameter list. CodeVBPublic Function findElement(Of T As IComparable) ( ByVal searchArray As T(), ByVal searchValue As T) As Integer If searchArray.GetLength(0) > 0 Then For i As Integer = 0 To searchArray.GetUpperBound(0) If searchArray(i).CompareTo(searchValue) = 0 Then Return i Next i End If Return -1 End Function CommentsThe preceding example requires the ability to compare searchValue against each element of searchArray. To guarantee this ability, it constrains the type parameter T to implement the IComparable<T> interface. The code uses the CompareTo method instead of the = operator, because there is no guarantee that a type argument supplied for T supports the = operator. You can test the findElement procedure with the following code. VBPublic Sub tryFindElement() Dim stringArray() As String = {"abc", "def", "xyz"} Dim stringSearch As String = "abc" Dim integerArray() As Integer = {7, 8, 9} Dim integerSearch As Integer = 8 Dim dateArray() As Date = {#4/17/1969#, #9/20/1998#, #5/31/2004#} Dim dateSearch As Date = Microsoft.VisualBasic.DateAndTime.Today MsgBox(CStr(findElement(Of String)(stringArray, stringSearch))) MsgBox(CStr(findElement(Of Integer)(integerArray, integerSearch))) MsgBox(CStr(findElement(Of Date)(dateArray, dateSearch))) End Sub The preceding calls to MsgBox display "0", "1", and "-1" respectively. See also
Source/Reference
©sideway ID: 200900019 Last Updated: 9/19/2020 Revision: 0 Ref: ![]() References
![]() Latest Updated Links
![]() ![]() ![]() ![]() ![]() |
![]() Home 5 Business Management HBR 3 Information Recreation Hobbies 8 Culture Chinese 1097 English 339 Travel 18 Reference 79 Computer Hardware 254 Software Application 213 Digitization 37 Latex 52 Manim 205 KB 1 Numeric 19 Programming Web 289 Unicode 504 HTML 66 CSS 65 SVG 46 ASP.NET 270 OS 431 DeskTop 7 Python 72 Knowledge Mathematics Formulas 8 Set 1 Logic 1 Algebra 84 Number Theory 206 Trigonometry 31 Geometry 34 Calculus 67 Engineering Tables 8 Mechanical Rigid Bodies Statics 92 Dynamics 37 Fluid 5 Control Acoustics 19 Natural Sciences Matter 1 Electric 27 Biology 1 |
Copyright © 2000-2025 Sideway . All rights reserved Disclaimers last modified on 06 September 2019