Difference between revisions of "C Sharp Operators and Expressions"

From Techotopia
Jump to: navigation, search
(C# Operator Precedence)
(C# Operator Precedence)
Line 104: Line 104:
 
The following table outlines the C# operator precedence order from highest precedence to lowest:
 
The following table outlines the C# operator precedence order from highest precedence to lowest:
  
<table>
+
<table border="1" cellspacing="0">
 +
<tr style="background:#efefef;">
 
<th>Operators</th>
 
<th>Operators</th>
 
<tr>
 
<tr>
Line 136: Line 137:
 
It should come as no surprise that the assignment operators have the lowest precedence since you would not want to assign the result of an expression until that expression had been fully evaluated.  
 
It should come as no surprise that the assignment operators have the lowest precedence since you would not want to assign the result of an expression until that expression had been fully evaluated.  
  
Don't worry about memorizing the above table. Most programmers simply use parentheses to ensure that their expressions are evaluation in the desired order.
+
Don't worry about memorizing the above table. Most programmers simply use parentheses to ensure that their expressions are evaluated in the desired order.
  
 
== Compound Assignment Operators ==
 
== Compound Assignment Operators ==

Revision as of 19:36, 14 January 2008

In C# Variables and Constants we looked at using variables and constants in C# and also described the different variable and constant types. Being able to create constants and variables is only part of the story however. The next step is to learn how use these variables and constants in our C# code. The primary method for working with data in constants and variables is in the form of expressions.


Contents


What is an Expression?

The most basic expression consists of an operator, two operands and an assignment. The following is an example of an expression:

int theResult = 1 + 2;

In the above example the (+) operator is used to add two operands (1 and 2) together. The assignment operator (=) subsequently assigns the result of the addition to an integer variable named the Result. The operands could just have easily been variables or constants (or a mixture of each) instead of the actually numerical values used in the example.

In the remainder of this chapter we will look at the various types of operators available in C#.

The Basic Assignment Operator

We have already looked at the most basic of assignment operators, the = operator. This assignment operator simply assigns the result of an expression to a variable. In essence the = assignment operator takes two operands. The left hand operand is the variable to which a value is to be assigned and the right hand operand is the value ot be assigned. The right hand operand is, more often than not an expression which performs some type of arithmetic or logical evaluation. The following examples are all valid uses of the assignment operator:

x = 10;  // Assigns the value 10 to a variable named x

x = y + z; // Assigns the result of variable y added to variable z to variable x;

x = y;   // Assigns the value of variable y to variable x

Assignment operators may also be chained to assign the same value to multiple variables. For example, the following code example assigns the value 20 to the x, y and z variables:

int x, y, z;

x = y = z = 20;

C# Arithmetic Operators

C# provides a range of operators for the purpose of creating mathematical expressions. These operators primarily fall into the category of binary operators in that they take to operands. The exception is the negative operator (-) which serves to indicate that a value is negative rather than positive. This contrasts the the subtraction operator (-) which takes two operands (i.e one value to be subtracted from another). For example:

int x = -10; // Unary - operator used to assign -10 to a variable named x

x = y - z; // Subtraction operator. Subtracts z from y

The following table lists the primary C# arithmetic operators:

OperatorDescription
-(unary)Negates the value of
*Multiplication
/Division
+Addition
-Subtraction
%Modulo

Note that multiple operators may be used in a single expression. For example:

x = y * 10 + z - 5 / 4;

Whilst the above code is perfectly valid it is important to be aware that C# does not evaluate the expression from left to right ot right to left, but rather in an order specified by the precedence of the various operators. Operator precedence is an important topic to understand since it impacts the result of a calculation and will be covered in detail i the next section.

C# Operator Precedence

When humans evaluate expressions, they usually do so starting at the left of the expression and working towards the right. For example, working from left to right we get a result of 300 from the following expression:

10 + 20 * 10 = 300

This is because we, as humans, add 10 to 20, resulting in 30 and then multiply that by 10 to arrive at 300. Ask C# to perform the same calculation and you get a very different answer:

int x;

x = (10 + 20) * 10;

System.Console.WriteLine (x)

The above code, when compiled and executed, will output the result 210.

This is a direct result of operator precedence. C# has a set of rules that tell it in which order operators should be evaluated in an expression. Clearly, C# considers the multiplication operator (*) to be of a higher precedence than the addition (+) operator.

Fortunately the precedence built into C# can be overridden by surrounding the lower priority section of an expression with parentheses. For example:

int x;

x = 10 + 20 * 10;

System.Console.WriteLine (x)

In the above example, the expression fragment enclosed in parentheses is evaluated before the higher precedence multiplication resulting in a value of 300.

The following table outlines the C# operator precedence order from highest precedence to lowest:

Operators
+ -  ! ~ ++x --x (T)x
* /  %
+ -
<< >>
< > <= >= is as
==  !=
&
^
|
&&
||
:?
= *= /=  %= += -= <<= >>= &= ^= |=
It should come as no surprise that the assignment operators have the lowest precedence since you would not want to assign the result of an expression until that expression had been fully evaluated. Don't worry about memorizing the above table. Most programmers simply use parentheses to ensure that their expressions are evaluated in the desired order.

Compound Assignment Operators

C# provides a number of operators designed to combine an assignment with a mathematical or logical operation. These are primarily of use when performing an evaluation where the result is to be stored in one of the operands. For example, one might write an expression as follows:

x = x + y;

The above expression adds the value contained in variable x to the value contained in variable y and stores the result in variable x. This can be simplified using the addition compound assignment operator:

x += y

The above expression performs exactly the same task as x = x + y but saves the programmer some typing. This is yet another feature that C# has inherited from the C programming language.

Numerous compound assignment operators are available in C#. The most frequently used are outlined in the following table:

OperatorDescription
x += yAdd x to y and place result in x
x -= ySubtract y from x and place result in x
x *= yMultiply x by y and place result in x
x /= yDivide x by y and place result in x
x %= yPerform Modulo on x and y and place result in x
x &= yAssign to x the result of logical AND operation on x and y
x |= yAssign to x the result of logical OR operation on x and y
x ^= yAssign to x the result of logical Exclusive OR on x and y