Operators in VB.net
By: Steven Holzner in VB.net Tutorials on 2008-11-25
Visual Basic comes with plenty of built-in operators, which let you manipulate your data. For example, here I'm adding the values in intVariable1 and intVariable2 with the addition operator, +, and storing the result in intVariable3 with the assignment operator, =:
Module Module1 Sub Main() Dim intVariable1 As Integer = 1234 Dim intVariable2 As Integer = 2345 Dim intVariable3 As Integer intVariable3 = intVariable1 + intVariable2 System.Console.WriteLine(intVariable3) End Sub End Module
This code prints out the result of adding 1234 and 2345, which is 3579. An operator works on operands; for example, in the expression 5 + 4, 5 is operand1,+ is the operator, and 4 is operand2. Some operators in Visual Basic take two operands, and some take one.
There are various types of operators in Visual Basic, and I'll go over them all here. Here are the Arithmetic operators (for example, the expression 5 + 4 yields a value of 9):
-
^ Exponentiation
-
* Multiplication
-
/ Division
-
\ Integer division
-
Mod Modulus
-
+ Addition
-
- Subtraction
These are the Assignment operators (for example, temperature = 72 stores the value 72 in the variable temperature):
-
= Assignment
-
^= Exponentiation followed by assignment
-
*= Multiplication followed by assignment
-
/= Division followed by assignment
-
\= Integer division followed by assignment
-
+= Addition followed by assignment
-
-= Subtraction followed by assignment
-
&= Concatenation followed by assignment
Here are the Comparison operators (these values yield true or false values-for example, 5 > 4 yields a value of True):
-
< (Less than)-True if operand1 is less than operand2
-
<= (Less than or equal to)-True if operand1 is less than or equal to operand2
-
> (Greater than)-True if operand1 is greater than operand2
-
>= (Greater than or equal to)-True if operand1 is greater than or equal to operand2
-
= (Equal to)-True if operand1 equals operand2
-
<> (Not equal to)-True if operand1 is not equal to operand2
-
Is-True if two object references refer to the same object
-
Like-Performs string pattern matching
These are the String Concatenation operators (for example, "Hi "& " there " yields the string "Hi there".):
-
& String concatenation
-
+ String concatenation
These are the Logical/Bitwise operators, where bitwise means working bit by bit with numerical values. These types of operators can work on logical values (for example, if blnValue1 is set to True and blnValue2 is set to False, then blnValue1 Or blnValue2 returns a value of True) or numbers for bitwise operations, which work on their operands bit by bit (for example, if intValue1 is set to 2 and intValue2 is set to 1, then intValue1 Or intValue2 yields 3):
-
And- Performs an And operation (for logical operations: True if both operands are True, False otherwise; the same for bit-by-bit operations where you treat 0 as False and 1 as True).
-
Not- Reverses the logical value of its operand, from True to False and False to True, for bitwise operations, turns 0 into 1 and 1 into 0.
-
Or- Operator performs an Or operation (for logical operations: True if either operand is True, False otherwise; the same for bit-by-bit operations where you treat 0 as False and 1 as True).
-
Xor- Operator performs an exclusive-Or operation (for logical operations: True if either operand, but not both, is True, and False otherwise; the same for bit-by-bit operations where you treat 0 as False and 1 as True).
-
AndAlso- Operator A "short circuited" And operator; if the first operand is False, the second operand is not tested.
-
OrElse- Operator A "short circuited" Or operator, if the first operand is True, the second is not tested.
And here are two other miscellaneous operators:
-
AddressOf- Gets the address of a procedure.
-
GetType- Gets information about a type.
VB6 programmers will note a whole new set of assignment operators, such as +=, -=, and so on. Following the lead of languages like Java, VB .NET now supports these combination operators. For example, += is a combination of + and =, which means that you can write intValue1 = intValue1 + 1 asintValue1 += 1. In a similar way, you can write intValue1 = intValue1 * 5 asintValue1 *= 5, providing an easy shortcut.
Also, in Visual Basic .NET, if the first operand of an And operator evaluates to False, the remainder of the logical expression is not evaluated. Similarly, if the first operand of an Or operator evaluates to True, the remainder of the logical expression is not evaluated. This is called short-circuiting.
Add Comment
This policy contains information about your privacy. By posting, you are declaring that you understand this policy:
- Your name, rating, website address, town, country, state and comment will be publicly displayed if entered.
- Aside from the data entered into these form fields, other stored data about your comment will include:
- Your IP address (not displayed)
- The time/date of your submission (displayed)
- Your email address will not be shared. It is collected for only two reasons:
- Administrative purposes, should a need to contact you arise.
- To inform you of new comments, should you subscribe to receive notifications.
- A cookie may be set on your computer. This is used to remember your inputs. It will expire by itself.
This policy is subject to change at any time and without notice.
These terms and conditions contain rules about posting comments. By submitting a comment, you are declaring that you agree with these rules:
- Although the administrator will attempt to moderate comments, it is impossible for every comment to have been moderated at any given time.
- You acknowledge that all comments express the views and opinions of the original author and not those of the administrator.
- You agree not to post any material which is knowingly false, obscene, hateful, threatening, harassing or invasive of a person's privacy.
- The administrator has the right to edit, move or remove any comment for any reason and without notice.
Failure to comply with these rules may result in being banned from submitting further comments.
These terms and conditions are subject to change at any time and without notice.
- Data Science
- Android
- React Native
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Related Tutorials
Changes in Controls from VB6 to VB.net
Unstructured Exception Handling in VB.net
Structured Exception Handling in VB.net
Creating Sub Procedures in VB.net
Passing a Variable Number of Arguments to Procedures in VB.net
Specifying Optional Arguments with default values in Procedures in VB.net
Preserving a Variable's Values between Procedure Calls in VB.net
Throwing an Exception in VB.net
Comments