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 KeywordsVB.Net DataVB.Net Declared ElementVB.Net DelegatesVB.Net Object CharacteristicsVB.Net EventsVB.Net InterfacesVB.Net LINQVB.Net Object and ClassVB.Net Operators and ExpressionsVB.Net ProceduresVB.Net StatementsVB.Net StringsVB.Net XMLConstants and LiteralsVB .NET EnumerationsVB .NET Data Types Visual Basic VariableVB .NET Variable DeclarationVB .NET Object Variable Draft for Information Only
Content
VB.NET Object Variable Declaration
VB.NET Object Variable DeclarationYou use a normal declaration statement to declare an object variable. For the data type, you specify either Object (that is, the Object Data Type) or a more specific class from which the object is to be created. Declaring a variable as Object is the same as declaring it as System.Object. When you declare a variable with a specific object class, it can access all the methods and properties exposed by that class and the classes from which it inherits. If you declare the variable with Object, it can access only the members of the Object class, unless you turn Option Strict Off to allow late binding. Declaration SyntaxUse the following syntax to declare an object variable: VBDim variablename As [New] { objectclass | Object } You can also specify Public, Protected, Friend, Protected Friend, Private, Shared, or Static in the declaration. The following example declarations are valid: VBPrivate objA As Object Static objB As System.Windows.Forms.Label Dim objC As System.OperatingSystem Late Binding and Early BindingSometimes the specific class is unknown until your code runs. In this case, you must declare the object variable with the Object data type. This creates a general reference to any type of object, and the specific class is assigned at run time. This is called late binding. Late binding requires additional execution time. It also limits your code to the methods and properties of the class you have most recently assigned to it. This can cause run-time errors if your code attempts to access members of a different class. When you know the specific class at compile time, you should declare the object variable to be of that class. This is called early binding. Early binding improves performance and guarantees your code access to all the methods and properties of the specific class. In the preceding example declarations, if variable objA uses only objects of class System.Windows.Forms.Label, you should specify As System.Windows.Forms.Label in its declaration. Advantages of Early BindingDeclaring an object variable as a specific class gives you several advantages:
Access to Object Variable MembersWhen Option Strict is turned On, an object variable can access only the methods and properties of the class with which you declare it. The following example illustrates this. VB' Option statements must precede all other source file lines. Option Strict On ' Imports statement must precede all declarations in the source file. Imports System.Windows.Forms Public Sub accessMembers() Dim p As Object Dim q As System.Windows.Forms.Label p = New System.Windows.Forms.Label q = New System.Windows.Forms.Label Dim j, k As Integer ' The following statement generates a compiler ERROR. j = p.Left ' The following statement retrieves the left edge of the label in pixels. k = q.Left End Sub In this example, p can use only the members of the Object class itself, which do not include the Left property. On the other hand, q was declared to be of type Label, so it can use all the methods and properties of the Label class in the System.Windows.Forms namespace. Flexibility of Object VariablesWhen working with objects in an inheritance hierarchy, you have a choice of which class to use for declaring your object variables. In making this choice, you must balance flexibility of object assignment against access to members of a class. For example, consider the inheritance hierarchy that leads to the System.Windows.Forms.Form class: Suppose your application defines a form class called specialForm, which inherits from class Form. You can declare an object variable that refers specifically to specialForm, as the following example shows. VBPublic Class specialForm Inherits System.Windows.Forms.Form ' Insert code defining methods and properties of specialForm. End Class Dim nextForm As New specialForm The declaration in the preceding example limits the variable nextForm to objects of class specialForm, but it also makes all the methods and properties of specialForm available to nextForm, as well as all the members of all the classes from which specialForm inherits. You can make an object variable more general by declaring it to be of type Form, as the following example shows. VBDim anyForm As System.Windows.Forms.Form The declaration in the preceding example lets you assign any form in your application to anyForm. However, although anyForm can access all the members of class Form, it cannot use any of the additional methods or properties defined for specific forms such as specialForm. All the members of a base class are available to derived classes, but the additional members of a derived class are unavailable to the base class. See also
How to: Access Members of an ObjectWhen you have an object variable that refers to an object, you often want to work with the members of that object, such as its methods, properties, fields, and events. For example, once you have created a new Form object, you might want to set its Text property or call its Focus method. Accessing MembersYou access an object's members through the variable that refers to it. To access members of an object
Accessing Members of an Object of Known TypeIf you know the type of an object at compile time, you can use early binding for a variable that refers to it. To access members of an object for which you know the type at compile time
Accessing Members of an Object of Unknown TypeIf you do not know the type of an object at compile time, you must use late binding for any variable that refers to it. To access members of an object for which you do not know the type at compile time
See also
Object Variable AssignmentYou use a normal assignment statement to assign an object to an object variable. You can assign an object expression or the Nothing keyword, as the following example illustrates. VBDim thisObject As Object ' The following statement assigns an object reference. thisObject = Form1 ' The following statement discontinues association with any object. thisObject = Nothing Nothing means there is no object currently assigned to the variable. InitializationWhen your code begins running, your object variables are initialized to Nothing. Those whose declarations include initialization are reinitialized to the values you specify when the declaration statements are executed. You can include initialization in your declaration by using the New keyword. The following declaration statements declare object variables testUri and ver and assign specific objects to them. Each uses one of the overloaded constructors of the appropriate class to initialize the object. VBDim testUri As New System.Uri("https://www.microsoft.com") Dim ver As New System.Version(6, 1, 0) DisassociationSetting an object variable to Nothing discontinues the association of the variable with any specific object. This prevents you from accidentally changing the object by changing the variable. It also allows you to test whether the object variable points to a valid object, as the following example shows. VBIf otherObject IsNot Nothing Then ' otherObject refers to a valid object, so your code can use it. End If If the object your variable refers to is in another application, this test cannot determine whether that application has terminated or just invalidated the object. An object variable with a value of Nothing is also called a null reference. Current InstanceThe current instance of an object is the one in which the code is currently executing. Since all code executes inside a procedure, the current instance is the one in which the procedure was invoked. The Me keyword acts as an object variable referring to the current instance. If a procedure is not Shared, it can use the Me keyword to obtain a pointer to the current instance. Shared procedures cannot be associated with a specific instance of a class. Using Me is particularly useful for passing the current instance to a procedure in another module. For example, suppose you have a number of XML documents and wish to add some standard text to all of them. The following example defines a procedure to do this. VBSub addStandardText(XmlDoc As System.Xml.XmlDocument) XmlDoc.CreateTextNode("This text goes into every XML document.") End Sub Every XML document object could then call the procedure and pass its current instance as an argument. The following example demonstrates this. VBaddStandardText(Me) See also
How to: Declare an Object Variable and Assign an Object to ItYou declare a variable of the Object Data Type by specifying As Object in a Dim Statement. You assign an object to such a variable by placing the object after the equal sign (=) in an assignment statement or initialization clause. ExampleThe following example declares an Object variable and assigns the current instance to it. VBDim thisObject As Object thisObject = "This is an Object" You can combine the declaration and assignment by initializing the variable as part of its declaration. The following example is equivalent to the preceding example. VBDim thisObject As Object= "This is an Object" Compiling the CodeThis example requires:
See also
How to: Make an Object Variable Not Refer to Any InstanceYou can disassociate an object variable from any object instance by setting it to Nothing. To disassociate an object variable from any object instance
Robust ProgrammingIf your code tries to access a member of an object variable that has been set to Nothing, a NullReferenceException occurs. If you set an object variable to Nothing frequently, or if it is possible the variable is not initialized, it is a good idea to enclose member accesses in a Try...Catch...Finally block. .NET Framework SecurityIf you use an object variable for objects that contain confidential or sensitive data, you can set the variable to Nothing when you are not actively dealing with one of those objects. This reduces the chance of malicious code gaining access to the data. See also
Object Variable ValuesA variable of the Object Data Type can refer to data of any type. The value you store in an Object variable is kept elsewhere in memory, while the variable itself holds a pointer to the data. Object Classifier FunctionsVisual Basic supplies functions that return information about what an Object variable refers to, as shown in the following table.
You can use these functions to avoid submitting an invalid value to an operation or a procedure. TypeOf OperatorYou can also use the TypeOf Operator to determine whether an object variable currently refers to a specific data type. The TypeOf...Is expression evaluates to True if the run-time type of the operand is derived from or implements the specified type. The following example uses TypeOf on object variables referring to value and reference types. ' The following statement puts a value type (Integer) in an Object variable. Dim num As Object = 10 ' The following statement puts a reference type (Form) in an Object variable. Dim frm As Object = New Form() If TypeOf num Is Long Then Debug.WriteLine("num is Long") If TypeOf num Is Integer Then Debug.WriteLine("num is Integer") If TypeOf num Is Short Then Debug.WriteLine("num is Short") If TypeOf num Is Object Then Debug.WriteLine("num is Object") If TypeOf frm Is Form Then Debug.WriteLine("frm is Form") If TypeOf frm Is Label Then Debug.WriteLine("frm is Label") If TypeOf frm Is Object Then Debug.WriteLine("frm is Object") The preceding example writes the following lines to the Debug window: num is Integer num is Object frm is Form frm is Object The object variable num refers to data of type Integer, and frm refers to an object of class Form. Object ArraysYou can declare and use an array of Object variables. This is useful when you need to handle a variety of data types and object classes. All the elements in an array must have the same declared data type. Declaring this data type as Object allows you to store objects and class instances alongside other data types in the array. See also
How to: Refer to the Current Instance of an ObjectThe current instance of an object is the instance in which the code is currently executing. You use the Me keyword to refer to the current instance. To refer to the current instance
See alsoHow to: Determine What Type an Object Variable Refers ToAn object variable contains a pointer to data that is stored elsewhere. The type of that data can change during run time. At any moment, you can use the GetTypeCode method to determine the current run-time type, or the TypeOf Operator to find out if the current run-time type is compatible with a specified type. To determine the exact type an object variable currently refers to
To determine whether an object variable's type is compatible with a specified type
Compiling the CodeNote that the specified type cannot be a variable or expression. It must be the name of a defined type, such as a class, structure, or interface. This includes intrinsic types such as Integer and String. See alsoHow to: Determine Whether Two Objects Are RelatedYou can compare two objects to determine the relationship, if any, between the classes from which they are created. The IsInstanceOfType method of the System.Type class returns True if the specified class inherits from the current class, or if the current type is an interface supported by the specified class. To determine if one object inherits from another object's class or interface
ExampleThe following example determines whether one object represents a class derived from another object's class. VBPublic Class baseClass End Class Public Class derivedClass : Inherits baseClass End Class Public Class testTheseClasses Public Sub seeIfRelated() Dim baseObj As Object = New baseClass() Dim derivedObj As Object = New derivedClass() Dim related As Boolean related = baseObj.GetType().IsInstanceOfType(derivedObj) MsgBox(CStr(related)) End Sub End Class Note the unexpected placement of the two object variables in the call to IsInstanceOfType. The supposed base type is used to generate the System.Type class, and the supposed derived type is passed as an argument to the IsInstanceOfType method. See also
How to: Determine Whether Two Objects Are IdenticalIn Visual Basic, two variable references are considered identical if their pointers are the same, that is, if both variables point to the same class instance in memory. For example, in a Windows Forms application, you might want to make a comparison to determine whether the current instance (Me) is the same as a particular instance, such as Form2. Visual Basic provides two operators to compare pointers. The Is Operator returns True if the objects are identical, and the IsNot Operator returns True if they are not. Determining if Two Objects Are IdenticalTo determine if two objects are identical
Determining if Two Objects Are Not IdenticalSometimes you want to perform an action if the two objects are not identical, and it can be awkward to combine Not and Is, for example If Not obj1 Is obj2. In such a case you can use the IsNot operator. To determine if two objects are not identical
ExampleThe following example tests pairs of Object variables to see if they point to the same class instance. VBDim objA, objB, objC As Object objA = My.User objB = New ApplicationServices.User objC = My.User MsgBox("objA different from objB? " & CStr(objA IsNot objB)) MsgBox("objA identical to objC? " & CStr(objA Is objC)) The preceding example displays the following output. objA different from objB? True objA identical to objC? True See also
Source/Reference
©sideway ID: 200900008 Last Updated: 9/8/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