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 VariableVB .NET Object Variable Declaration Draft for Information Only
Content
VB.NET Local ype Inference
VB.NET Local ype InferenceThe Visual Basic compiler uses type inference to determine the data types of local variables declared without an As clause. The compiler infers the type of the variable from the type of the initialization expression. This enables you to declare variables without explicitly stating a type, as shown in the following example. As a result of the declarations, both num1 and num2 are strongly typed as integers. VBPublic Sub inferenceExample() ' Using explicit typing. Dim num1 As Integer = 3 ' Using local type inference. Dim num2 = 3 End Sub Note If you do not want num2 in the previous example to be typed as an Integer, you can specify another type by using a declaration like Dim num3 As Object = 3 or Dim num4 As Double = 3. Note Type inference can be used only for non-static local variables; it cannot be used to determine the type of class fields, properties, or functions. Local type inference applies at procedure level. It cannot be used to declare variables at module level (within a class, structure, module, or interface but not within a procedure or block). If num2 in the previous example were a field of a class instead of a local variable in a procedure, the declaration would cause an error with Option Strict on, and would classify num2 as an Object with Option Strict off. Similarly, local type inference does not apply to procedure level variables declared as Static. Type Inference vs. Late BindingCode that uses type inference resembles code that relies on late binding. However, type inference strongly types the variable instead of leaving it as Object. The compiler uses a variable's initializer to determine the variable's type at compile time to produce early-bound code. In the previous example, num2, like num1, is typed as an Integer. The behavior of early-bound variables differs from that of late-bound variables, for which the type is known only at run time. Knowing the type early enables the compiler to identify problems before execution, allocate memory precisely, and perform other optimizations. Early binding also enables the Visual Basic integrated development environment (IDE) to provide IntelliSense Help about the members of an object. Early binding is also preferred for performance. This is because all data stored in a late-bound variable must be wrapped as type Object, and accessing members of the type at run time makes the program slower. ExamplesType inference occurs when a local variable is declared without an As clause and initialized. The compiler uses the type of the assigned initial value as the type of the variable. For example, each of the following lines of code declares a variable of type String. VB' Using explicit typing. Dim name1 As String = "Springfield" ' Using local type inference. Dim name2 = "Springfield" The following code demonstrates two equivalent ways to create an array of integers. VB' Using explicit typing. Dim someNumbers1() As Integer = New Integer() {4, 18, 11, 9, 8, 0, 5} ' Using local type inference. Dim someNumbers2 = New Integer() {4, 18, 11, 9, 8, 0, 5} It is convenient to use type inference to determine the type of a loop control variable. In the following code, the compiler infers that number is an Integer because someNumbers2 from the previous example is an array of integers. VBDim total = 0 For Each number In someNumbers2 total += number Next Local type inference can be used in Using statements to establish the type of the resource name, as the following example demonstrates. VBUsing proc = New System.Diagnostics.Process ' Insert code to work with the resource. End Using The type of a variable can also be inferred from the return values of functions, as the following example demonstrates. Both pList1 and pList2 are arrays of processes because Process.GetProcesses returns an array of processes. VB' Using explicit typing. Dim pList1() As Process = Process.GetProcesses() ' Using local type inference. Dim pList2 = Process.GetProcesses() Option InferOption Infer enables you specify whether local type inference is allowed in a particular file. To enable or to block the option, type one of the following statements at the start of the file. Option Infer On Option Infer Off If you do not specify a value for Option Infer in your code, the compiler default is Option Infer On. If the value set for Option Infer in a file conflicts with the value set in the IDE or on the command line, the value in the file has precedence. For more information, see Option Infer Statement and Compile Page, Project Designer (Visual Basic). See also
Source/Reference©sideway ID: 200900009 Last Updated: 9/9/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